java classpath
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2210
Java::SJ::Classpath 0.01
Java::SJ::Classpath Perl module is a Java classpath generator. more>>
Java::SJ::Classpath Perl module is a Java classpath generator.
This module is used by Java::SJ::Config when generating complete classpaths.
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.
<<lessThis module is used by Java::SJ::Config when generating complete classpaths.
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.
Download (0.018MB)
Added: 2007-06-04 License: Perl Artistic License Price:
875 downloads
GNU Classpath 0.95
GNU Classpath is a project to create free core class libraries for use with virtual machines. more>>
GNU Classpath (essential libraries for Java) is a project to create free core class libraries for use with virtual machines and compilers for the Java programming language.
GNU Classpath project includes all native methods and core classes necessary for a completely functional execution environment.
Enhancements:
- The 1.5 generics work was fully merged.
- The code is bootstrappable with OpenJDK javac compiler.
- URLConnection timeout support was added.
- TimeZone can use the platform zoneinfo file when available.
- The Collection classes, lang.management, and util.spi have been updated to 1.6.
- A 1.6 ServiceLoader was added.
- Speed was increased for Cairo and Freetype Graphics2D support.
- The ASM library is now included.
- Detection of browser plugin mechanisms was improved for gcjwebplugin applet support in Mozilla, Iceweasel, and Firefox.
<<lessGNU Classpath project includes all native methods and core classes necessary for a completely functional execution environment.
Enhancements:
- The 1.5 generics work was fully merged.
- The code is bootstrappable with OpenJDK javac compiler.
- URLConnection timeout support was added.
- TimeZone can use the platform zoneinfo file when available.
- The Collection classes, lang.management, and util.spi have been updated to 1.6.
- A 1.6 ServiceLoader was added.
- Speed was increased for Cairo and Freetype Graphics2D support.
- The ASM library is now included.
- Detection of browser plugin mechanisms was improved for gcjwebplugin applet support in Mozilla, Iceweasel, and Firefox.
Download (6.5MB)
Added: 2007-04-23 License: GPL (GNU General Public License) Price:
917 downloads
Java Classic RPG 20070810
Java Classic RPG is an RPG framework, engine, and game that uses OpenGL. more>>
Java Classic RPG is an RPG framework, engine, and game that uses OpenGL, a challenging AI, huge territories, and classic pen-and-paper turn-based combat. This project is in the tradition of games like Wizardry 7 and EOB, but incorporates innovations made possible by modern computing technology.
The framework and engine feature a self-containing, playable, algorithmically-generated world, and can be the base for new games.
Enhancements:
- The 3D core was refactored, a new jungle design (along with partly billboarded trees and bushes) was added, and several optimizations and bugfixes have been included.
<<lessThe framework and engine feature a self-containing, playable, algorithmically-generated world, and can be the base for new games.
Enhancements:
- The 3D core was refactored, a new jungle design (along with partly billboarded trees and bushes) was added, and several optimizations and bugfixes have been included.
Download (30MB)
Added: 2007-08-12 License: LGPL (GNU Lesser General Public License) Price:
820 downloads
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.
<<lessCurrently 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.
Download (0.13MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
985 downloads
Java::Build::Tasks 0.05
Java::Build::Tasks is a Perl module that collects common Java build tasks in one place: jar, jarsigner, etc. more>>
Java::Build::Tasks is a Perl module that collects common Java build tasks in one place: jar, jarsigner, etc.
SYNOPSIS
use Java::Build::Tasks;
set_logger($log_object);
copy_file(source, dest);
copy_file(list, of, sources, dest);
copy_file(-r, list, of, sources, with, flags, dest);
copy_file([ list, of, sources ], dest);
copy_file([ -r, list, of, sources, with, flags ], dest);
my $file_list = build_file_list(
BASE_DIR => where/to/start,
EXCLUDE_PATTERNS => [ qr/leave/, qr/these/, qr/out/ ],
INCLUDE_PATTERNS => [ qr/.*include/, qr/these.*/ ],
EXCLUDE_DEFAULTS => 1,
STRIP_BASE_DIR => 1,
QUOTE_DOLLARS => 1,
);
jar(
JAR_FILE => some/full/path/ending/in/a.jar,
FILE_LIST => $file_list;
MANIFEST => location/of/manifest/to/put/in/jar,
BASE_DIR => path/to/change/to/before/building/jar,
APPEND => 1,
);
signjar(
JAR_FILE => what/to/sign,
KEYSTORE => path/to/your/keystore,
ALIAS => $your_alias,
STOREPASS => $your_keystore_pass,
);
my $config_hash = read_prop_file($prop_file_name);
update_prop_file(
NAME => /optional/path/and/file.properties,
NEW_PROPS => %values_to_add_or_update,
);
filter_file(
INPUT => t/file1,
OUTPUT => t/file2,
FILTERS => [
sub { my $string = shift; $string =~ s/Happy/Joyous/g; $_;}
],
);
my $dirties = what_needs_compiling(
SOURCE_FILE_LIST => $list,
SOURCE_DIR => path/to/your/source/files,
DEST_DIR => path/to/your/compiled/files,
SOURCE_TO_COMPILIED_NAME => sub { ... },
);
my $classpath = make_jar_classpath(
DIRS => [ /path/to/some/set/of/jars,
/path/to/some/other/jars ],
INCLUDE_PATTERNS => [ qr/.jar$/, qr/.ZIP$/ ], # optional
);
purge_dirs($base_dir, qw(sub directories to remove));
<<lessSYNOPSIS
use Java::Build::Tasks;
set_logger($log_object);
copy_file(source, dest);
copy_file(list, of, sources, dest);
copy_file(-r, list, of, sources, with, flags, dest);
copy_file([ list, of, sources ], dest);
copy_file([ -r, list, of, sources, with, flags ], dest);
my $file_list = build_file_list(
BASE_DIR => where/to/start,
EXCLUDE_PATTERNS => [ qr/leave/, qr/these/, qr/out/ ],
INCLUDE_PATTERNS => [ qr/.*include/, qr/these.*/ ],
EXCLUDE_DEFAULTS => 1,
STRIP_BASE_DIR => 1,
QUOTE_DOLLARS => 1,
);
jar(
JAR_FILE => some/full/path/ending/in/a.jar,
FILE_LIST => $file_list;
MANIFEST => location/of/manifest/to/put/in/jar,
BASE_DIR => path/to/change/to/before/building/jar,
APPEND => 1,
);
signjar(
JAR_FILE => what/to/sign,
KEYSTORE => path/to/your/keystore,
ALIAS => $your_alias,
STOREPASS => $your_keystore_pass,
);
my $config_hash = read_prop_file($prop_file_name);
update_prop_file(
NAME => /optional/path/and/file.properties,
NEW_PROPS => %values_to_add_or_update,
);
filter_file(
INPUT => t/file1,
OUTPUT => t/file2,
FILTERS => [
sub { my $string = shift; $string =~ s/Happy/Joyous/g; $_;}
],
);
my $dirties = what_needs_compiling(
SOURCE_FILE_LIST => $list,
SOURCE_DIR => path/to/your/source/files,
DEST_DIR => path/to/your/compiled/files,
SOURCE_TO_COMPILIED_NAME => sub { ... },
);
my $classpath = make_jar_classpath(
DIRS => [ /path/to/some/set/of/jars,
/path/to/some/other/jars ],
INCLUDE_PATTERNS => [ qr/.jar$/, qr/.ZIP$/ ], # optional
);
purge_dirs($base_dir, qw(sub directories to remove));
Download (0.030MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
874 downloads
Java-Chess 06_30_03
Java-Chess project is a standalone Java chess program. more>>
Java-Chess project is a standalone Java chess program.
Java-Chess is a fully-featured chess program that uses using Java 1.2 (including Swing) and 64-bit computing where possible.
The goal of the Java-Chess project is to develop an OpenSource chess application written in Java. We want to demonstrate that Java can be tuned to a point, where it is almost up to the performance of an application, that was directly compiled to native code.
Even clean object-oriented design does not necessarily generate an overhead, that makes high-performance computing virtually impossible.
<<lessJava-Chess is a fully-featured chess program that uses using Java 1.2 (including Swing) and 64-bit computing where possible.
The goal of the Java-Chess project is to develop an OpenSource chess application written in Java. We want to demonstrate that Java can be tuned to a point, where it is almost up to the performance of an application, that was directly compiled to native code.
Even clean object-oriented design does not necessarily generate an overhead, that makes high-performance computing virtually impossible.
Download (0.62MB)
Added: 2006-11-08 License: GPL (GNU General Public License) Price:
1106 downloads
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.
<<lessThis 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.
Download (0.023MB)
Added: 2006-12-20 License: (FDL) GNU Free Documentation License Price:
1053 downloads
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.
<<lessJava 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.
Download (0.12MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
961 downloads
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.
<<lessJava 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.
Download (0.15MB)
Added: 2007-07-09 License: Freeware Price:
838 downloads
Java Web Shell 0.0.8
Java Web Shell is a web based interactive shell-type environment written in Java. more>>
Java Web Shell is a web based interactive shell-type environment written in Java.
Obviously, to use the shell, youll need to be using a browser that supports Java Applets, and this has been compiled using the Sun 1.4.1 JDK.
Head over to Sun and pick up the latest runtime enviroment if you dont already have it.
<<lessObviously, to use the shell, youll need to be using a browser that supports Java Applets, and this has been compiled using the Sun 1.4.1 JDK.
Head over to Sun and pick up the latest runtime enviroment if you dont already have it.
Download (0.013MB)
Added: 2007-03-12 License: GPL (GNU General Public License) Price:
968 downloads
Java Jabber Client 0.0.19
Java Jabber Client is a Jabber client written in Java. more>>
Jabber is an instant messagings system (and a few other things but Ill forget about these for the moment), but it uses XML so its easy to create clients for it, and to link it in with other systems.
As well as that anyone can run a Jabber server, so youre school, university or office could have their own messaging system.
<<lessAs well as that anyone can run a Jabber server, so youre school, university or office could have their own messaging system.
Download (0.13MB)
Added: 2005-09-08 License: GPL (GNU General Public License) Price:
1513 downloads
Java::JCR::Workspace 0.08
Java::JCR::Workspace is a Perl wrapper for javax.jcr.Workspace. more>>
Java::JCR::Workspace is a Perl wrapper for javax.jcr.Workspace.
This is an automatically generated package wrapping javax.jcr.Workspace with a nice Perlish API.
For full documentation of what this class does, see the Java API documentation: http://www.day.com/maven/jsr170/javadocs/jcr-1.0/javax/jcr/Workspace.html
The deviations from the API documentation include the following:
- You will need to use Perl, intead of Java, to make any use of this API. (Duh.)
The package to use is Java::JCR::Workspace, rather than javax.jcr.Workspace.
- All method names have been changed from Java-style camelCase() to Perl-style lower_case().
Thus, if the function were named getName() in the Java API, it will be named get_name() in this API. As another example, nextEventListener() in the Java API will be next_event_listener() in this API.
- Handle exceptions just like typical Perl. Java::JCR::Exception takes care of making sure that works as expected.
<<lessThis is an automatically generated package wrapping javax.jcr.Workspace with a nice Perlish API.
For full documentation of what this class does, see the Java API documentation: http://www.day.com/maven/jsr170/javadocs/jcr-1.0/javax/jcr/Workspace.html
The deviations from the API documentation include the following:
- You will need to use Perl, intead of Java, to make any use of this API. (Duh.)
The package to use is Java::JCR::Workspace, rather than javax.jcr.Workspace.
- All method names have been changed from Java-style camelCase() to Perl-style lower_case().
Thus, if the function were named getName() in the Java API, it will be named get_name() in this API. As another example, nextEventListener() in the Java API will be next_event_listener() in this API.
- Handle exceptions just like typical Perl. Java::JCR::Exception takes care of making sure that works as expected.
Download (0.047MB)
Added: 2007-06-04 License: Perl Artistic License Price:
872 downloads
Java for C++ 0.4
Java for C++ is a tool to generate C++-wrapper-classes for existing Java-classes. more>>
Java for C++ is a tool to generate C++-wrapper-classes for existing Java-classes. This tool reads a list of Java class names and creates source code for C++-classes to wrap them.
The implementation of the wrapper classes uses JNI (Java Native Interface) to call the "real" Java classes.
The C++-API to use these wrapper classes is very close to the API of the original Java classes. So developers of C++-software can use Java-classes as if they have been implemented in C++.
Enhancements:
- A problem where null values for method arguments, method return values, or field values caused some generated code to crash was fixed.
- Updating is strongly encouraged.
<<lessThe implementation of the wrapper classes uses JNI (Java Native Interface) to call the "real" Java classes.
The C++-API to use these wrapper classes is very close to the API of the original Java classes. So developers of C++-software can use Java-classes as if they have been implemented in C++.
Enhancements:
- A problem where null values for method arguments, method return values, or field values caused some generated code to crash was fixed.
- Updating is strongly encouraged.
Download (0.043MB)
Added: 2005-12-22 License: GPL (GNU General Public License) Price:
1404 downloads
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.
<<lessSYNOPSIS
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.
Download (0.028MB)
Added: 2006-12-01 License: Perl Artistic License Price:
1059 downloads
Java RSS Ticker 1.8.7 Beta 1
Java RSS Ticker is a Java RSS and Atom Ticker/Aggregator/Reader. more>>
Java RSS Ticker is a Java RSS and Atom Ticker/Aggregator/Reader. I had checked out a number of tickers that look pretty as they scroll etc., but took a lot of CPU cycles and cost money. I wanted a simple, OS independent, ticker so I wrote this one in Java.
<<less Download (0.21MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
923 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above java classpath search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed