Main > Free Download Search >

Free java update software for linux

java update

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4546
javaSVNUpdater 0.9.0

javaSVNUpdater 0.9.0


javaSVNUpdater is a Java library that allows an application to update or patch itself automatically. more>>
javaSVNUpdater is a Java library that allows an application to update or patch itself automatically.

The versioning information about the application needs to be stored in a subversion archive, and committing to the archive effects the distribution of new versions.

It includes an updater wizard and an executor to spawn a separate process for proceeding with updates.
<<less
Download (0.73MB)
Added: 2005-07-01 License: GPL (GNU General Public License) Price:
1576 downloads
Java Games 1.0

Java Games 1.0


Java Games is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser. more>>
Java Games project is a collection of simple games that are compiled into Java applets and meant to be played online in a Web browser.

Currently the collection contains four games: XO World (similar to tic-tac-toe, but with lines of 5 on a 10x10 board); 100 Mack (guess the random combination of 4 images out of a set of six); Memory (flip 2 plates at a time to find matching pairs); and Tetris.
<<less
Download (0.13MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
985 downloads
Java Tetris 1.0

Java Tetris 1.0


Java Tetris project is a simple Tetris game. more>>
Java Tetris project is a simple Tetris game.
Java Tetris is a game written with Eclipse and the VE Plugin. It is a nice starting point if you want to learn Java and Eclipse.
The game can be started as Java applet or Java application.
Enhancements:
- The dependency on jdom was removed.
- The jar is now only 30kb.
- A bug was fixed in the score list.
<<less
Download (0.12MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
961 downloads
Java Jukebox 1.12

Java Jukebox 1.12


Java Jukebox is a multiuser music server capable of selecting music appropriate to its current listeners. more>>
jjukebox is a multiuser music server capable of selecting music appropriate to its current listeners. Its robust enough for you to store your music (for example, the popular mp3 format) over different locations (network drives, cdroms) and not hang when any device fails.
The music server has been designed around reliability and extensibility, making it extremely reliable even when running under very dubious circumstances.
There is no limit to the amount of music other than the resources of the computer that you are running jjukebox on, or what types of music you can add to the music server, jjukebox can play many different types of music format thanks to Suns JavaMedia framework, and JavaZooms JavaLayerPlayer
Main features:
- Robust management of music mounted on other computers - if a remote computer becomes unreachable jjukebox automatically unmounts all the music stored on it without affecting play.
- Ratings system - so that people can rate tracks they like/hate and jjukebox will do its best to only play tracks people currently logged into it like.
- Programmable fading between tracks for smooth music transitions.
- Coded in pure java - can run on any platform with a conforming Java Virtual Machine
Enhancements:
Added in this release:
- A new looping queue - Plays the current queue forever.
- Faster magazine loading and saving.
- Beta GUI Client.
- Beta DAAP server.
Fixes for this releaes:
- Installer bugs from previous versions fixed - GNOME and KDE shortcuts are now correctly created.
- Play bug where player would sometimes randomly stop playing between tracks has been fixed.
- Increased playback buffer to help prevent skipping on slower machines.
- Client/Server code tidied up and fixes done mainly concerning server responses.
- Updated player jars, and a fix for 1.5 (Java 5) vm where volume setting would cause an exception when a new track was started.
- Multicast DNS fixes, this will form part of server clustering and easy server locating for the GUI client.
<<less
Download (3.1MB)
Added: 2005-10-14 License: GPL (GNU General Public License) Price:
1477 downloads
Java Tools 0.30

Java Tools 0.30


Java Tools is a lightweight integrated development environment for creating, compiling, and executing Java applications. more>>
Java Tools is a lightweight integrated development environment for creating, compiling, and executing Java applications and applets.
Java Tools includes point and click access to the Java files, commands, and documents. It also includes a built-in text editor and user interface for the Java debugger.
It is intended for the new Java user who needs help getting started. Its also for the more experienced Java user who wants easy access to the Java commands and a text editor.
Main features:
- GUI with built-in help and small footprint.
- Point and click access to all files (Java, manifest, HTML, image and sound) and directories (package).
- Point and click access to all commands for compiling (javac), archiving (jar), documenting (javadoc), executing (java), debugging (jdb) and disassembling (javap).
- Point and click access to all documents (Java API Specification, Java Tools and Utilities, Java Features and Java Tutorial).
- Point and click creation of all files (Java, manifest and HTML) and directories (package).
- Point and click installation of distribution archive files (Java document, Java source code, Java Tutorial and Sun Tools).
- Automatic determination of class file dependencies for archiving (jar) and documenting (javadoc) Java files.
- Checking for unused, redundant and missing imports.
- Logging of all commands invoked by GUI.
- Code metrics for Java files.
- Built-in text editor (see Edit for details).
- Built-in user interface for the Java debugger with command-line editing and history.
- Self-installing executable (Java archive file).
- Comprehensive installation and user documentation for Java and Java Tools.
<<less
Download (0.15MB)
Added: 2007-07-09 License: Freeware Price:
838 downloads
Java::Build 0.05

Java::Build 0.05


Java::Build is a family of modules which you can use instead of Ant. more>>
Java::Build is a family of modules which you can use instead of Ant.

SYNOPSIS

use Java::Build::JVM; # access to the javac compiler in one jvm
use Java::Build::Tasks; # some helpful methods similar to Ant tasks

my $source_files = build_file_list(
BASE_DIR => $some_path,
INCLUDE_PATTERNS => [ qr/.java$/ ],
);
my $dirty_sources = what_needs_compiling(
SOURCE_FILE_LIST => $source_files,
);
if (@$dirty_sources) {
my $compiler = Java::Ant::JVM->getCompiler();
$compiler->destination($base_dir);
$compiler->classpath($base_dir);
$compiler->compile($dirty_sources);

my $class_files = build_file_list(
BASE_DIR => $some_path,
INCLUDE_PATTERNS => [ qr/.class$/ ],
EXCLUDE_PATTERNS => [ qr/Test/ ],
EXCLUDE_DEFAULTS => 1,
STRIP_BASE_DIR => 1,
);
jar(
JAR_FILE => $jar_file_name,
FILE_LIST => $class_files,
BASE_DIR => $some_path,
);
}

ABSTRACT

This family of modules helped me move away from Ant to a proper scripting language, namely Perl. With it you can use a single JVM for compiling your java programs. It provides many useful methods to help you build lists of files, package them with jar, etc. Currently the modules are unix centric. If you make them work elsewhere, please send in patches.

<<less
Download (0.030MB)
Added: 2007-04-20 License: Perl Artistic License Price:
917 downloads
Java::Import 0.03

Java::Import 0.03


Java::Import is Perl module to use Java classes in Perl. more>>
Java::Import is Perl module to use Java classes in Perl.

SYNOPSIS

use Java::Import qw(
some.package.SomeClass
);

my $instance = new some.package.SomeClass();
$instance->someMethod();

my $ret_val = some::package::SomeClass::someStaticMethod();
$ret_val->someMethod();

$ret_val2 = $instance->someOtherMethod($ret_val);
$ret_val2->someMethod();

my $java_array_ref $instance->someMethod2();
foreach my $obj ( @$java_array_ref ) {
$obj->someMethod();
}

The purpose of this module is to provide a simple method for using Java classes from a Perl program while using the latest in Open Source Java Technology. Thus, this module makes great use of the GNU Compiler Tools for Java in its implimentation.

<<less
Download (0.028MB)
Added: 2006-12-01 License: Perl Artistic License Price:
1059 downloads
Java Clazz Utils 1.2.2

Java Clazz Utils 1.2.2


Java Clazz Utils offers you a full-featured and crossplatform Java bytecode viewer and decompiler which can support latest Java versions (from 1.4 till 1.6). more>>

Java Clazz Utils 1.2.2 offers you a full-featured and crossplatform Java bytecode viewer and decompiler which can support latest Java versions (from 1.4 till 1.6). It can be used both as command line tool and user application with Swing interface. It contains InfoJ, Decompiler and jclazz-GUI.

Major Features:

  1. InfoJ can be used to generate information about Java class. The output includes all possible data that can be extracted from class file: fields, methods, attributes, access flags, signatures, debug information, opcodes etc.
  2. Decompiler can be used to reproduce Java source code from compiled Java class file. It uses debug information to produce Java code which is nearly the same as original source file. Nevertheless, there are several restrictions and Java code constructions that prevent decompiler from producing the same code as original and even correct Java code. You can find out more about these cases below on this page.
  3. jclazz-GUI is user-friendly interface for quick start and easy to use.

Enhancements:

  • Save of decompiled file writes to predefined file name - Fixed
  • Condition structures "condition ? operation1 : operation2" were decompiled incorrectly - Fixed
  • URL to bug reporting page is corrected


<<less
Added: 2009-05-01 License: GPL Price: FREE
1 downloads
SCAP-Java 0.9

SCAP-Java 0.9


SCAP-Java is an automatic thematical mapping software. more>>
SCAP-Java is an automatic thematical mapping software. It draws colors or symbol maps from your data, with step by step procedures coherent with the cartography semiology methodology.

SCAP-Java was developed for education and map production, with an emphasis on usability: its easy to create a PDF map from spreadsheet data and geospatial datasets (mif/mid).
<<less
Download (4.3MB)
Added: 2006-08-17 License: CeCILL (CeCILL Free Software License Agreement) Price:
1172 downloads
Java::SJ 0.01

Java::SJ 0.01


Java::SJ is a highly configurable Java program startup system. more>>
Java::SJ is a highly configurable Java program startup system.

SYNOPSIS

sj myprogram.sj

This module allows you to very easily run Java services that rely on complex configuration at the VM and library level. It also provides an easy way of specifying a sensible default configuration that can be overridden by specific applications should they need to.

The system is configured on a machine and application level. The system looks for configuration files in a set of well-known locations, currently these are:

/etc/sj.conf
.sj.conf in users HOME directory
.sj.conf in current working directory

Every application is defined in terms of a similar configuration file. The configuration system has been designed so that it is easy to write a simple and minimal configuration file for a program.
Provided the system has a fairly complete configuration associated with it then an application configuration file need only have the class name to be executed.

<<less
Download (0.018MB)
Added: 2006-09-12 License: Perl Artistic License Price:
1138 downloads
Java SOS 5.45

Java SOS 5.45


Java SOS is a set of configurable Java servlets for fast site building. more>>
Java SOS is a set of configurable Java servlets for fast site building, including Forums, Chat, and Calendar servlets, etc.
Coldbeans Software* implemented next version of Servlets Office Suite (JSOS). This product is a collection of servlets and filters for Java(tm) technology "out of the box" ready for building web-pages.
What does this collection need for? You know CGI scripts. Many sites on the Net need interactive capabilities to request information from the visitors and respond them. Most of those use scripts such as Perl, PHP, etc. But this approach has some disadvantages. Namely, for each new request a new process starts on the server where the site is hosted which requires additional computing resources, slows down executing all job.
Servlets require only one process no matter how many requests are being handled. These need less resources. They are faster and 100% portable. There are great engines to run them. Here are some: JRun, ServletExec, Jserv, Tomcat etc . That is all true. But why are CGI scripts still used?
They are old good technology people got used to. There are a lot of scripts all over the Net. Unfortunately, the last does not go to servlets. Fortunately, there is JSOS.
JSOS plays the same role as a set of CGI scripts and can be used by webmasters for adding dynamic capabilities to their sites.
JSOS has got a rich set of servlets such as Message Board, Chat, File Manager, Calendar and many others. You can use them instead of CGI scripts to build your site. As a matter of fact, it is the fastest way to make a site serving for needs of some community and the easiest way for managing the site. Last version of components supports WAP/WML also.
At this moment JSOS is probably the largest Java servlets collection over the Net and continues to grow. With WAP/WML support JSOS is probably the first Java scripts set for the mobile world.
Who will use this bundle?
- J2EE compatible servers vendors. Having a rich set of components is an extra argument for their potential customers
- Internet Service Providers. Most of them currently offer free CGI scripts preinstalled for subscribers. Nobody do that for servlets. Why?
- Web developers going to replace old CGI scripts with modern approach.
- Customers who need support mobile users in their web-based applications
Especially, we would like to point your attention to the fact that JSOS can be used to build Intranet sites. Do you need discussion groups? Do you need back your developers with the common knowledge base? Buddy chat? Take a look at Coldbeans servlets. It is the fastest way to assemble your site/portal from Coldbeans web components.
All JSOS servlets are easy to use. They are configurable so they will meet your design requirements.
JSOS is free for any non-commercial use. Please read our license file.
Some of free servlets may have minor restrictions such as copyright logo, restricted set of pages, etc.
Enhancements:
- New components and code base updates.
<<less
Download (1.0MB)
Added: 2007-08-16 License: Free for non-commercial use Price:
805 downloads
JSwat Java Debugger 4.2

JSwat Java Debugger 4.2


JSwat is a graphical, stand-alone Java debugger, using the JPDA library. more>>
JSwat is a graphical, stand-alone Java debugger, using the JPDA library.
JSwat Java Debugger offers breakpoints with monitors and conditions, colorized source code display, single-stepping, displaying variables, viewing stack frames, and expression evaluation.
Main features:
- breakpoints with conditionals and monitors
- colorized source code display
- graphical display panels showing threads
- stack frames
- visible variables
- loaded classes
- command interface for more advanced features
- Java-like expression evaluation, including method invocation.
<<less
Download (11.9MB)
Added: 2007-05-18 License: CDDL (Common Development and Distribution License) Price:
895 downloads
Java DIME Library 1.0.3

Java DIME Library 1.0.3


Java DIME Library implements Direct Internet Message Encapsulation. more>>
Java DIME Library project implements Direct Internet Message Encapsulation (DIME), which is a lightweight binary encapsulation format that can be used to encapsulate multiple payloads of arbitrary types and sizes into a single message.
DIME is ideal for incorporating binary attachments into any XML-based protocol. The library fully supports the latest DIME specifications.
Enhancements:
- Corrected DimeRecord.isFirst() thanks to John Russell
<<less
Download (0.16MB)
Added: 2006-09-15 License: LGPL (GNU Lesser General Public License) Price:
1144 downloads
Secure Java Diary 0.3.0a

Secure Java Diary 0.3.0a


Secure Java Diary is a Java Diary with Strong Encryption. more>>
Secure Diary is a Java application that uses the Bouncy Castle JCE to provide strong encryption for your diary.

It stores the entries using blowfish and triple DES. It allows you to enter/view/export diary enteries in multiple diaries.
<<less
Download (0.82MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1649 downloads
FreeCell Java Applet 1.1

FreeCell Java Applet 1.1


FreeCell Java Applet project is a Java applet of the popular FreeCell card game. more>>
FreeCell Java Applet project is a Java applet of the popular FreeCell card game.

This is a Java applet of the popular FreeCell card game.

FreeCell is the enormously popular solitaire game. Because all cards are visible at the start of the game, it is almost entirely a game of skill.

Almost all FreeCell positions can be won. The most notable exception is the game #11982.

<<less
Download (0.023MB)
Added: 2006-12-20 License: (FDL) GNU Free Documentation License Price:
1053 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5