one jar
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 264
One-JAR 0.95
One-JAR is a Java jar distribution mechanism. more>>
One-JAR is a simple solution to the problem of distributing an application as a single jar file, when it depends on multiple other jar files.
It uses a custom classloader to discover library jar files inside the main jar.
<<lessIt uses a custom classloader to discover library jar files inside the main jar.
Download (0.027MB)
Added: 2005-04-07 License: Freely Distributable Price:
932 downloads
Winstone 0.9.9
Winstone is a servlet container that was written out of a desire to provide servlet functionality. more>>
Winstone is a servlet container that was written out of a desire to provide servlet functionality. Winstone works without the bloat that full J2EE compliance introduces.
It is not intended to be a completely fully functional J2EE style servlet container (by this I mean supporting extraneous APIs unrelated to Servlets, such as JNDI, JavaMail, EJBs, etc) - this is left to Tomcat, Jetty, Resin, JRun, Weblogic et al.
Sometimes you want just a simple servlet container - without all the other junk - that just goes. This is where Winstone is best suited.
The short version (because the long version is way too politically incorrect) is as follows:
Winstone is the name of a rather large Jamaican man a friend of mine met one night, while he was out clubbing in the Roppongi area of Tokyo. He (my friend) was a little liquored up at the time, and when Winstone suggested they head to "this really cool club" he knew, he didnt think anything was wrong. It wasnt until Winstone led him down a dark stairwell and dropped his trousers that my friend clued in and ran like hell.
It was too good a story to let die, so I named this project Winstone so that said friend will continue to be reminded of it.
Main features:
- Supply fast, reliable servlet container functionality for a single webapp per server
- Keep the size of the core distribution jar as low as possible (currently 160KB)
- Keep configuration files to an absolute minimum, using command line options to optionally override sensible compiled in defaults.
- Eventually compile with GCJ to make a 3-4Meg windows exe for local development/deployment of servlets. This has not happened yet, because of some GCJ class loading problems.
- Optionally support JSP compilation using Apaches Jasper.
Usage:
If you want to build from source code, you will need to download and install Apache Maven. The following instructions assume you have already installed Maven and have the maven shell script in your path (to get Maven, see http://maven.apache.org/).
To build Winstone, unpack the tree:
tar zxf winstone-src-0.8.tar.gz
Then build it:
cd winstone
maven clean jar
The winstone.jar file will be in the target directory after the build is complete.
To run it:
java -jar target/winstone-0.8.jar --webroot= (+ other options)
- OR -
java -jar target/winstone-0.8.jar --warfile= (+ other options)
- OR -
java -jar target/winstone-0.8.jar --webappsDir= (+ other options)
- OR -
java -jar target/winstone-0.8.jar --hostsDir= (+ other options)
<<lessIt is not intended to be a completely fully functional J2EE style servlet container (by this I mean supporting extraneous APIs unrelated to Servlets, such as JNDI, JavaMail, EJBs, etc) - this is left to Tomcat, Jetty, Resin, JRun, Weblogic et al.
Sometimes you want just a simple servlet container - without all the other junk - that just goes. This is where Winstone is best suited.
The short version (because the long version is way too politically incorrect) is as follows:
Winstone is the name of a rather large Jamaican man a friend of mine met one night, while he was out clubbing in the Roppongi area of Tokyo. He (my friend) was a little liquored up at the time, and when Winstone suggested they head to "this really cool club" he knew, he didnt think anything was wrong. It wasnt until Winstone led him down a dark stairwell and dropped his trousers that my friend clued in and ran like hell.
It was too good a story to let die, so I named this project Winstone so that said friend will continue to be reminded of it.
Main features:
- Supply fast, reliable servlet container functionality for a single webapp per server
- Keep the size of the core distribution jar as low as possible (currently 160KB)
- Keep configuration files to an absolute minimum, using command line options to optionally override sensible compiled in defaults.
- Eventually compile with GCJ to make a 3-4Meg windows exe for local development/deployment of servlets. This has not happened yet, because of some GCJ class loading problems.
- Optionally support JSP compilation using Apaches Jasper.
Usage:
If you want to build from source code, you will need to download and install Apache Maven. The following instructions assume you have already installed Maven and have the maven shell script in your path (to get Maven, see http://maven.apache.org/).
To build Winstone, unpack the tree:
tar zxf winstone-src-0.8.tar.gz
Then build it:
cd winstone
maven clean jar
The winstone.jar file will be in the target directory after the build is complete.
To run it:
java -jar target/winstone-0.8.jar --webroot= (+ other options)
- OR -
java -jar target/winstone-0.8.jar --warfile= (+ other options)
- OR -
java -jar target/winstone-0.8.jar --webappsDir= (+ other options)
- OR -
java -jar target/winstone-0.8.jar --hostsDir= (+ other options)
Download (0.33MB)
Added: 2007-07-11 License: LGPL (GNU Lesser General Public License) Price:
838 downloads
Open Dice Language 1.5
Open Dice Language project is a language for describing dice rolls. more>>
Open Dice Language project is a language for describing dice rolls.
Open Dice Language is a language for describing dice rolls.
The language is nearly identical to what you see in most role-playing game texts (e.g., "1d20"). It provides several interfaces to the language.
To run in CLI interface mode:
# pushd $ODL_HOME
# java -jar ODL.jar
To run as Widget:
build using `ant widget`
widget is now installed in users widget directory
<<lessOpen Dice Language is a language for describing dice rolls.
The language is nearly identical to what you see in most role-playing game texts (e.g., "1d20"). It provides several interfaces to the language.
To run in CLI interface mode:
# pushd $ODL_HOME
# java -jar ODL.jar
To run as Widget:
build using `ant widget`
widget is now installed in users widget directory
Download (0.49MB)
Added: 2007-01-08 License: BSD License Price:
1019 downloads
Cleaner 0.1
Cleaner is a Java beautifier that transforms ugly syntax into beautiful syntax. more>>
Cleaner is a Java beautifier that transforms ugly syntax into beautiful syntax. The Java code syntax is parsed using ANTLR and then printed to standard output.
Source is included.
Something like this:
public void foo(String bar)
{
for(int x=0; x < 9; x++ )
{
System.out.println ("X = " + x);
}
}
Will become
public void foo( String bar ){
for ( int x = 0; x < 9; x++ ){
System.out.println( "X = " + x );
}
}
Compile:
$ ant
Run:
$ java -classpath cleaner.jar:lib/antlr.jar cleaner.Cleaner < some-file >
<<lessSource is included.
Something like this:
public void foo(String bar)
{
for(int x=0; x < 9; x++ )
{
System.out.println ("X = " + x);
}
}
Will become
public void foo( String bar ){
for ( int x = 0; x < 9; x++ ){
System.out.println( "X = " + x );
}
}
Compile:
$ ant
Run:
$ java -classpath cleaner.jar:lib/antlr.jar cleaner.Cleaner < some-file >
Download (0.58MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1335 downloads
Domingo 1.4
Domingo is a simple, consistent, object-oriented easy-to-use interface to the Lotus Notes/Domino Java-API. more>>
Domingo is a simple, consistent, object-oriented easy-to-use interface to the Lotus Notes/Domino Java-API.
Installation:
To install Domingo on your Notes Client or Domino server, please download a binary distribution, extract the file domingo-1.0.jar and choose one of the following instructions.
Notes/Domino R5
Copy the file domingo-1.0.jar to the folder of your local Notes installation.
Add the path to this file to the JavaUserClasses variable in your notes.ini file, e.g.
JavaUserClasses=C:LotusNotes6domino-1.0.jar
Notes/Domino R6/R7
Copy the file domingo-1.0.jar to the folder jvm/lib/ext in your Lotus Notes installation, e.g. C:LotusNotes6jvmlibext.
You do not have to change JavaUserClasses.
Configuration
Domingo can be configured by a properties file named domingo.properties that must be placed in the package de.bea.domingo. The following properties are supported. Usually you donot have to change these values, because the default values are appropriate for most cases.
de.bea.domingo.monitor.level Setup debug level of Domingo. Allowed values are FATAL, ERROR, WARN, INFO or DEBUG WARN
de.bea.domingo.threadpool.size Setup number of threads in thread pool. 1
de.bea.domingo.cache.threshold Threshold of weak cache before recycling unused notes objects. Extremly small values might worsen performance, extremly high values might result in out of memory errors. Allowed values are any integer bigger than zero
Enhancements:
- All known bugs were fixed and all feature requests were implemented.
- Many further new features were added.
<<lessInstallation:
To install Domingo on your Notes Client or Domino server, please download a binary distribution, extract the file domingo-1.0.jar and choose one of the following instructions.
Notes/Domino R5
Copy the file domingo-1.0.jar to the folder of your local Notes installation.
Add the path to this file to the JavaUserClasses variable in your notes.ini file, e.g.
JavaUserClasses=C:LotusNotes6domino-1.0.jar
Notes/Domino R6/R7
Copy the file domingo-1.0.jar to the folder jvm/lib/ext in your Lotus Notes installation, e.g. C:LotusNotes6jvmlibext.
You do not have to change JavaUserClasses.
Configuration
Domingo can be configured by a properties file named domingo.properties that must be placed in the package de.bea.domingo. The following properties are supported. Usually you donot have to change these values, because the default values are appropriate for most cases.
de.bea.domingo.monitor.level Setup debug level of Domingo. Allowed values are FATAL, ERROR, WARN, INFO or DEBUG WARN
de.bea.domingo.threadpool.size Setup number of threads in thread pool. 1
de.bea.domingo.cache.threshold Threshold of weak cache before recycling unused notes objects. Extremly small values might worsen performance, extremly high values might result in out of memory errors. Allowed values are any integer bigger than zero
Enhancements:
- All known bugs were fixed and all feature requests were implemented.
- Many further new features were added.
Download (0.96MB)
Added: 2007-06-20 License: LGPL (GNU Lesser General Public License) Price:
859 downloads
Jaffer 0.07
Jaffer project is a Java implementation of Appletalk File Protocol v3.1 using TCP Transport. more>>
Jaffer project is a Java implementation of Appletalk File Protocol v3.1 using TCP Transport. Performance on a Gigabit network exceeds both Samba and Netatalk. No, Really. Disable debugging.
Quick start:
This program will act like a native Appletalk file server. You must run it as root to use Appletalks normal port 548. But its just as happy running on any unpriviledged port. To access shadow passwords, the server must be run as root.
Your client must be a Mac OS X 10.2 or newer system.
Download a recent build and source code.
Or browse the source in svn.
Run the server:
java -jar jaffer.jar -config [config-file]
or, alternatively, for quick testing:
java -jar jaffer.jar -server [port] [volume-name] [path-to-export]
From the OS X Client, mount the new volume:
mount_afp afp://[user]:[pass]@[host]:[port]/[volume-name] [mount-point]
The [user]:[pass]@ part of the url is optional. If omitted, the mount will be attempted as a Guest user.
Developers:
Most of your work will most likely be done in the AFP_Session class implementing additional AFP calls. When you do this, please be mindful of comments in the code. They are sparse, but very important. When you add call implementations, please make sure they are represented in the AFP_Constants file and annotated with the page number in the AFP3.1 reference PDF.
Most of the implementation is geared towards AFP3.1 which means that some of the helper and common methods are not usable for AFP2.3 or earlier protocols.
Enhancements:
- added zipfs, refactoring for jdk1.5
<<lessQuick start:
This program will act like a native Appletalk file server. You must run it as root to use Appletalks normal port 548. But its just as happy running on any unpriviledged port. To access shadow passwords, the server must be run as root.
Your client must be a Mac OS X 10.2 or newer system.
Download a recent build and source code.
Or browse the source in svn.
Run the server:
java -jar jaffer.jar -config [config-file]
or, alternatively, for quick testing:
java -jar jaffer.jar -server [port] [volume-name] [path-to-export]
From the OS X Client, mount the new volume:
mount_afp afp://[user]:[pass]@[host]:[port]/[volume-name] [mount-point]
The [user]:[pass]@ part of the url is optional. If omitted, the mount will be attempted as a Guest user.
Developers:
Most of your work will most likely be done in the AFP_Session class implementing additional AFP calls. When you do this, please be mindful of comments in the code. They are sparse, but very important. When you add call implementations, please make sure they are represented in the AFP_Constants file and annotated with the page number in the AFP3.1 reference PDF.
Most of the implementation is geared towards AFP3.1 which means that some of the helper and common methods are not usable for AFP2.3 or earlier protocols.
Enhancements:
- added zipfs, refactoring for jdk1.5
Download (0.13MB)
Added: 2007-05-29 License: BSD License Price:
879 downloads
podLoadr 1.0
podLoader allows you to load content from the Web or other desktop files onto your iPod. more>>
podLoader allows you to load content from the Web or other desktop files onto your iPod. Later, for example while traveling, you can check out news from any RSS feed, the weather, or the contents of any file from your desktop.
This application uses the "Notes" feature on third-generation or later touch wheel iPods.
Usage:
In Brief:
- Run podLoadr by double-clicking on podloadr.jar after installing the JRE (or run java -jar podloadr.jar from a command prompt)
- Drag & drop files or links onto the "Files & Links" tab. Browsing or manually typing the file name also works.
- Check some news feeds, add weather zip codes and create a notes on their respective tabs.
- Click the run button (ensure that the iPod is connected and enabled in disk mode).
In Detail:
- In order to load a web page or news feed simply do the following:
- Ensure that your iPod is enabled for disk use. To do this in iTunes:
- Select your iPod under Devices in the Source list.
- Click the Summary tab.
- In the Options section of the Summary pane, click the "Enable disk use" checkbox.
- Note that if the "Manually manage songs and playlists" option is enabled, "Enable disk use" is always enabled or turned on.
- Connect your iPod to your computer as you usually do.
- Exit iTunes - just to be safe.
- Ensure that you have a recent version of the Java runtime (either JDK or JRE) from Sun.
- Run podLoadr by double clicking on podLoadr.jar. Alternatively you can open a command prompt and type java -jar podLoadr.jar
- Note that podLoadr.jar itself can be stored on the ipod and run directly from there. Keep podLoadr.jar and podLoadr.ini together.
- Populate the various tabs in podLoadr.
- Add your custom items to the "Files & Links" tab. This can be done in any of the following ways.
- Drag a file from your desktop or Explorer onto the list
- Drag a link from Internet Explorer or Firefox onto the list (by grabbing the icon in the address box)
- Type the full name of a file in the Name box and click on add
- Click on "Add/Browse" and navigate to the file you need and add it to the list.
- Check off the news feeds that you want from the categorized list.
- Enter the ZIP codes of the weather you want separated by commas.
- Double check the ipod tab to ensure that the drive letter is correct. Or if you have multiple iPods then you can change this setting. (If thats too confusing feel free to send the other iPod my way :-)
To view the note, disconnect your iPod, scroll the menu to Extras, and select Notes. Choose the name the file you created and press the Center button to display the content of the file. You can.t edit the file using iPod, but you can delete it or update it whenever your iPod is connected to your computer.
podLoader uses the "Notes" feature of the iPod to support downloading and offline viewing of online content. Such presentations can be used, for example, as directed lessons or self-paced electronic guided tours. Notes is available on iPod models beginning with third-generation iPod (dock connector) models with the touch wheel.
<<lessThis application uses the "Notes" feature on third-generation or later touch wheel iPods.
Usage:
In Brief:
- Run podLoadr by double-clicking on podloadr.jar after installing the JRE (or run java -jar podloadr.jar from a command prompt)
- Drag & drop files or links onto the "Files & Links" tab. Browsing or manually typing the file name also works.
- Check some news feeds, add weather zip codes and create a notes on their respective tabs.
- Click the run button (ensure that the iPod is connected and enabled in disk mode).
In Detail:
- In order to load a web page or news feed simply do the following:
- Ensure that your iPod is enabled for disk use. To do this in iTunes:
- Select your iPod under Devices in the Source list.
- Click the Summary tab.
- In the Options section of the Summary pane, click the "Enable disk use" checkbox.
- Note that if the "Manually manage songs and playlists" option is enabled, "Enable disk use" is always enabled or turned on.
- Connect your iPod to your computer as you usually do.
- Exit iTunes - just to be safe.
- Ensure that you have a recent version of the Java runtime (either JDK or JRE) from Sun.
- Run podLoadr by double clicking on podLoadr.jar. Alternatively you can open a command prompt and type java -jar podLoadr.jar
- Note that podLoadr.jar itself can be stored on the ipod and run directly from there. Keep podLoadr.jar and podLoadr.ini together.
- Populate the various tabs in podLoadr.
- Add your custom items to the "Files & Links" tab. This can be done in any of the following ways.
- Drag a file from your desktop or Explorer onto the list
- Drag a link from Internet Explorer or Firefox onto the list (by grabbing the icon in the address box)
- Type the full name of a file in the Name box and click on add
- Click on "Add/Browse" and navigate to the file you need and add it to the list.
- Check off the news feeds that you want from the categorized list.
- Enter the ZIP codes of the weather you want separated by commas.
- Double check the ipod tab to ensure that the drive letter is correct. Or if you have multiple iPods then you can change this setting. (If thats too confusing feel free to send the other iPod my way :-)
To view the note, disconnect your iPod, scroll the menu to Extras, and select Notes. Choose the name the file you created and press the Center button to display the content of the file. You can.t edit the file using iPod, but you can delete it or update it whenever your iPod is connected to your computer.
podLoader uses the "Notes" feature of the iPod to support downloading and offline viewing of online content. Such presentations can be used, for example, as directed lessons or self-paced electronic guided tours. Notes is available on iPod models beginning with third-generation iPod (dock connector) models with the touch wheel.
Download (2.6MB)
Added: 2007-05-01 License: Freeware Price:
961 downloads
Jar Ajar 0.3.1
Jar Ajar is a JAR-based self-extractor for zip files. more>>
Jar Ajar is a JAR-based self-extractor for zip files. Jar Ajar project can package zipped files with descriptive images and text using a graphical interface.
When recipients launch the resulting JAR, Jar Ajar guides users through the unzip process.
Jar Ajar is designed specifically for software deployment of Java-based applications. By taking advantage of the Java environment that would already be found on the users platform, Jar Ajar is very lightweight and offers a consistent look and feel.
Packaging. Features to help you package files for deployment:
- Welcome message: supports HTML and CSS-compliant text.
- Logo & License: allows you to include a customized logo and license.
- Zip: Jar Ajar zips up your files into a self-extracting .jar file.
- Documented: instructions are built right into the sidebar for quick access.
Self-Extraction. The self-extractor means that you can install your package on any computer that support Java. The general sequence of events during an installation include:
- Greetings from your welcome message.
- Required acceptance of your license.
- Browse for installation location.
- Install the files, with feedback on which files have been installed.
- Wrap-up, including a reminder of where the files have been installed to, and the option to open a readme and launch your program.
Enhancements:
- New features in this release include the ability to display a license during self-extraction and a readme afterward.
- Jar Ajar can now also launch programs after extraction.
- Hyperlinkable text displays are now supported.
- User interface improvements were made.
<<lessWhen recipients launch the resulting JAR, Jar Ajar guides users through the unzip process.
Jar Ajar is designed specifically for software deployment of Java-based applications. By taking advantage of the Java environment that would already be found on the users platform, Jar Ajar is very lightweight and offers a consistent look and feel.
Packaging. Features to help you package files for deployment:
- Welcome message: supports HTML and CSS-compliant text.
- Logo & License: allows you to include a customized logo and license.
- Zip: Jar Ajar zips up your files into a self-extracting .jar file.
- Documented: instructions are built right into the sidebar for quick access.
Self-Extraction. The self-extractor means that you can install your package on any computer that support Java. The general sequence of events during an installation include:
- Greetings from your welcome message.
- Required acceptance of your license.
- Browse for installation location.
- Install the files, with feedback on which files have been installed.
- Wrap-up, including a reminder of where the files have been installed to, and the option to open a readme and launch your program.
Enhancements:
- New features in this release include the ability to display a license during self-extraction and a readme afterward.
- Jar Ajar can now also launch programs after extraction.
- Hyperlinkable text displays are now supported.
- User interface improvements were made.
Download (0.20MB)
Added: 2007-01-03 License: GPL (GNU General Public License) Price:
1028 downloads
JComponentBreadboard 1.0.1
JComponentBreadboard aims to support the smallest collection of JComponents and the simplest facilities for composing them. more>>
JComponentBreadboard project aims to support the smallest collection of JComponents and the simplest facilities for composing them into forms, just sufficient to specify the majority of Java/Swing forms.
The project includes the main capabilities such as simplified layout management, data binding, data validation, but so streamlined that theres much less to think about, and only a 63KB JAR to download.
Enhancements:
- This release just corrects documentation errors.
<<lessThe project includes the main capabilities such as simplified layout management, data binding, data validation, but so streamlined that theres much less to think about, and only a 63KB JAR to download.
Enhancements:
- This release just corrects documentation errors.
Download (0.80MB)
Added: 2007-05-23 License: BSD License Price:
885 downloads
Open-RJ 1.6.4
Open-RJ is an library that implements readers for the Record-Jar structured text file format. more>>
Open-RJ is an library that implements readers for the Record-Jar structured text file format. Mappings are provided to several languages and technologies, including C++, COM, D, Java, .NET, Python, Ruby, and STL.
In addition to platform-independence, the library focuses on small runtime costs - memory and speed - and the classic UNIX attributes of discoverability and visibility.
As described in the excellent book "The Art Of UNIX Programming", a Record-Jar structured format file consists of records and fields.
A field is a single line - optionally extended with trailing - that contains a name, separated from an optional value by :.
A record is a list of fields, whose contents are arbitrary and can vary between records in the same database. Records are separated by a line that begins with "%%". The record separator also acts as a comment, so anything can come on a record separator line after the first two characters.
A database is a correctly parsed Record-Jar file. The Open-RJ API (and language mappings) provide access to all the records in the database and the complete set of fields. Hence, you may work with fields on a per-record basis, or treat the database as a single record and with all fields in the database.
A very simple Record-Jar file, representing a Pets Database, is shown in the table on the right-hand side of this page.
And thats pretty much all there is to it. There are no restrictions on what fields may be in a record, and no controls over whether all records have the same fields or not. Thats the job of higher layers of application functionality. We keep Record-Jar simple so its reliable, portable and fast, and its those things in spades!
%% Pets
Name: Barney
Species: Dog
Breed: Bijon
Frieze
%%
Name: Samson
Species: Dog
Breed: Ridgeback
%%
Name: Fluffy Kitten
Species: Cat
%%
Enhancements:
- The code was updated to be fully compatible with STLSoft 1.9.1 (the special version released on Extended STL, volume 1: CD).
<<lessIn addition to platform-independence, the library focuses on small runtime costs - memory and speed - and the classic UNIX attributes of discoverability and visibility.
As described in the excellent book "The Art Of UNIX Programming", a Record-Jar structured format file consists of records and fields.
A field is a single line - optionally extended with trailing - that contains a name, separated from an optional value by :.
A record is a list of fields, whose contents are arbitrary and can vary between records in the same database. Records are separated by a line that begins with "%%". The record separator also acts as a comment, so anything can come on a record separator line after the first two characters.
A database is a correctly parsed Record-Jar file. The Open-RJ API (and language mappings) provide access to all the records in the database and the complete set of fields. Hence, you may work with fields on a per-record basis, or treat the database as a single record and with all fields in the database.
A very simple Record-Jar file, representing a Pets Database, is shown in the table on the right-hand side of this page.
And thats pretty much all there is to it. There are no restrictions on what fields may be in a record, and no controls over whether all records have the same fields or not. Thats the job of higher layers of application functionality. We keep Record-Jar simple so its reliable, portable and fast, and its those things in spades!
%% Pets
Name: Barney
Species: Dog
Breed: Bijon
Frieze
%%
Name: Samson
Species: Dog
Breed: Ridgeback
%%
Name: Fluffy Kitten
Species: Cat
%%
Enhancements:
- The code was updated to be fully compatible with STLSoft 1.9.1 (the special version released on Extended STL, volume 1: CD).
Download (1.3MB)
Added: 2007-05-01 License: BSD License Price:
908 downloads
KeyPlayer 1.4
Java Keystroke and Mouse Event Tutor. Application to let you experiment to learn how mouse and keystroke events work. Output appears on the console. Just click the mouse or hit keystrokes and watch what details of the events generated. more>>
KeyPlayer - Java Keystroke and Mouse Event Tutor. Application to let you
experiment to learn how mouse and keystroke events work.
Output appears on the console. Just click the mouse or hit
keystrokes and watch what details of the events generated.
To install, Extract the zip download with Winzip, available from
http://www.winzip.com (or similar unzip utility) into any
directory you please, often C: -- ticking off the (user
folder names) option. To run as an application, type:
java -jar C:commindprodkeyplayerkeyplayer.jar
adjusting as necessary to account for where the jar file is.
Version 1.1 avoids dumping control chars to the console.
Version 1.3 adds a PAD and icon. renamed from keyplay to keyplayer.
Enhancements:
Version 1.4
add hex displays
System Requirements:Requires a Java 1.1 or later JRE<<less
Download (510Kb)
Added: 2007-12-19 License: Free Price: Free
12 downloads
GNetWatch 2.2
GNetWatch is a free open source Java application that enables real-time graphical monitoring. more>>
GNetWatch project is a free open source Java application that enables real-time graphical monitoring and analysis of network performances through SNMP, ICMP and traffic generation modules.
Using a bundle to run GNetWatch under LINUX
Just follow these steps:
1- download and install a Java SE Runtime Environment (JRE) compliant with JRE 5 specifications at least (available for instance from http://java.sun.com)
2- download and extract the GNetWatch LINUX bundle
3- set and export the MOZILLA_FIVE_HOME environment variable (see your Mozilla or Firefox documentation)
4- include the GNetWatch installation directory and the MOZILLA_FIVE_HOME in the LD_LIBRARY_PATH environment variable
Example:
user@host% tar zxf GNetWatch-LinuxBundle-version.tar.gz
user@host% cd GNetWatch-LinuxBundle-version
user@host% MOZILLA_FIVE_HOME=/usr/lib/mozilla-1.7.12
user@host% export MOZILLA_FIVE_HOME
user@host% LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$MOZILLA_FIVE_HOME:."
user@host% export LD_LIBRARY_PATH
user@host% java -jar GNetWatchBundle.jar
<<lessUsing a bundle to run GNetWatch under LINUX
Just follow these steps:
1- download and install a Java SE Runtime Environment (JRE) compliant with JRE 5 specifications at least (available for instance from http://java.sun.com)
2- download and extract the GNetWatch LINUX bundle
3- set and export the MOZILLA_FIVE_HOME environment variable (see your Mozilla or Firefox documentation)
4- include the GNetWatch installation directory and the MOZILLA_FIVE_HOME in the LD_LIBRARY_PATH environment variable
Example:
user@host% tar zxf GNetWatch-LinuxBundle-version.tar.gz
user@host% cd GNetWatch-LinuxBundle-version
user@host% MOZILLA_FIVE_HOME=/usr/lib/mozilla-1.7.12
user@host% export MOZILLA_FIVE_HOME
user@host% LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$MOZILLA_FIVE_HOME:."
user@host% export LD_LIBRARY_PATH
user@host% java -jar GNetWatchBundle.jar
Download (0.22MB)
Added: 2007-03-14 License: GPL (GNU General Public License) Price:
998 downloads
Jar::Signer 0.1
Jar::Signer Perl module ease the process of creating a signed Jar file. more>>
Jar::Signer Perl module ease the process of creating a signed Jar file.
SYNOPSIS
# using FindBin is just a suggestion.
use FindBin qw( $RealBin );
use Jar::Signer;
my $signer = Jar::Signer->new;
# location of the keystore, created if needed.
$signer->keystore("$RealBin/MyKeyStore");
# dname properties of the certificate.
$signer->dname("CN=Mark Southern, O=My Corporation, L=My State, C=USA");
# name for .fingerprint and ..cert files, created if needed.
$signer->alias("$RealBin/MyCert");
# the Jar file that we want to sign.
$signer->jar(shift);
# if signed_jar is undefined then the default is basename.signed.jar where basename is the basename of the Jar file.
$signer->signed_jar(shift);
# create the signed Jar.
$signer->process;
This module, and the script that uses it make it a lot simpler to generate signed Jar files for use in Java applets etc. It steps through all the needed jar, jarsigner and keytool command lines.
<<lessSYNOPSIS
# using FindBin is just a suggestion.
use FindBin qw( $RealBin );
use Jar::Signer;
my $signer = Jar::Signer->new;
# location of the keystore, created if needed.
$signer->keystore("$RealBin/MyKeyStore");
# dname properties of the certificate.
$signer->dname("CN=Mark Southern, O=My Corporation, L=My State, C=USA");
# name for .fingerprint and ..cert files, created if needed.
$signer->alias("$RealBin/MyCert");
# the Jar file that we want to sign.
$signer->jar(shift);
# if signed_jar is undefined then the default is basename.signed.jar where basename is the basename of the Jar file.
$signer->signed_jar(shift);
# create the signed Jar.
$signer->process;
This module, and the script that uses it make it a lot simpler to generate signed Jar files for use in Java applets etc. It steps through all the needed jar, jarsigner and keytool command lines.
Download (0.003MB)
Added: 2007-06-15 License: Perl Artistic License Price:
890 downloads
VPNmonitor 1.2
VPNmonitor is a free Java tool to observe network traffic. more>>
VPNmonitor is a free Java tool to observe network traffic. Network administrators can use it to monitor VPN (PPTP and IPSec) and SSL (HTTPS) connectivity of wireline/wireless networks.
If you are using Linux this way you will run VPNmonitor:
1. Install libpcap 0.7.2 or above from http://www.tcpdump.org/
2. Copy Jpcap libraries to the jre directories:
cp net.sourceforge.jpcap-0.01.13.jar /jre/lib/ext
cp libjpcap.so /jre/lib/i386
3. su to root
4. Run VPNmonitor
java -jar VPNmonitor.jar
<<lessIf you are using Linux this way you will run VPNmonitor:
1. Install libpcap 0.7.2 or above from http://www.tcpdump.org/
2. Copy Jpcap libraries to the jre directories:
cp net.sourceforge.jpcap-0.01.13.jar /jre/lib/ext
cp libjpcap.so /jre/lib/i386
3. su to root
4. Run VPNmonitor
java -jar VPNmonitor.jar
Download (0.67MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1219 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
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 one jar 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