java installer
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2525
Atlantis Installer 1.0.1
Atlantis Installer is an installation wizard built to simplify installing PHP-GTK2 applications. more>>
Atlantis Installer is an installation wizard built to simplify installing PHP-GTK2 applications on multiple platforms as an alternate solution to using PEAR. Atlantis Installer allows you to build your application with the structure you want and drop it nicely as one package.
However not limited to installing PHP-GTK2 applications, this installer does require that PHP and GTK2 libraries be installed. To use this for non PHP-GTK2 apps, the end user would have first install the Gnope package (Windows) or install PHP, GTK2, and the PHP module manually (Linux). This is something someone looking to run PHP-GTK2 apps has probably already done, and hopefully in the future Linux distributions will come prepared for PHP like most do with Perl and/or Python.
The standard setup of the installer works like this. Upon launch it greets the user, prompts them to click next. Then it asks for the location the user would like to install, and then click next. It then installs the package and outputs the status live in the output box. Though configuration you can set default paths and change the look of the installer.
With scripting you can perform additional tasks during the actual install step (like if you need to chmod or rename a file). The installer automaticly checks if it can install to the directory the user specified, and if it can then it creates the necessary directory structure.
<<lessHowever not limited to installing PHP-GTK2 applications, this installer does require that PHP and GTK2 libraries be installed. To use this for non PHP-GTK2 apps, the end user would have first install the Gnope package (Windows) or install PHP, GTK2, and the PHP module manually (Linux). This is something someone looking to run PHP-GTK2 apps has probably already done, and hopefully in the future Linux distributions will come prepared for PHP like most do with Perl and/or Python.
The standard setup of the installer works like this. Upon launch it greets the user, prompts them to click next. Then it asks for the location the user would like to install, and then click next. It then installs the package and outputs the status live in the output box. Though configuration you can set default paths and change the look of the installer.
With scripting you can perform additional tasks during the actual install step (like if you need to chmod or rename a file). The installer automaticly checks if it can install to the directory the user specified, and if it can then it creates the necessary directory structure.
Download (0.072MB)
Added: 2006-09-12 License: GPL (GNU General Public License) Price:
1150 downloads
GUInseng installer 0.1
GUInseng installer is an installer for Linux, based on GTK+ and Glade, released under GPL. more>>
GUInseng installer is an installer for Linux, based on GTK+ and Glade, released under GPL. With Guinseng Installer you can create your own graphical installation packages for Linux.
It is not a replacement for package management like RPM or DEB, its just a GUI for installation or/and build processes. In most cases, you have already an installation program for your software - e.g. based on automake. GUInseng is just a wrapper around a ready installation program.
<<lessIt is not a replacement for package management like RPM or DEB, its just a GUI for installation or/and build processes. In most cases, you have already an installation program for your software - e.g. based on automake. GUInseng is just a wrapper around a ready installation program.
Download (0.62MB)
Added: 2006-08-03 License: LGPL (GNU Lesser General Public License) Price:
1180 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 Network Stack 1.1
Java Network Stack provides a Java library for research oriented network programming. more>>
Java Network Stack provides a Java library for research oriented network programming.
Java Network Stack is a library used by the DIMES project to create new internet measurements. It provides a clean API for packet manipulation, send, receive, filter, and analysis. It is a unification of raw socket capabilities, MAC level networkingm, and IPv6 capabilities.
<<lessJava Network Stack is a library used by the DIMES project to create new internet measurements. It provides a clean API for packet manipulation, send, receive, filter, and analysis. It is a unification of raw socket capabilities, MAC level networkingm, and IPv6 capabilities.
Download (1.5MB)
Added: 2007-04-25 License: LGPL (GNU Lesser General Public License) Price:
918 downloads
Plugin::Installer 0.04
Plugin::Installers goal is to provide a simple, flexable interface for developing plugin languages. more>>
Plugin::Installers goal is to provide a simple, flexable interface for developing plugin languages.
SYNOPSIS
package Myplugin;
use base qw( Plugin::Installer Plugin::Language::Foobar );
...
my $plugin = Myplugin->construct;
# frobnicate is passed first to Plugin::Installer
# via AUTOLOAD, then to P::L::Foobars compile
# method. if what comes back from the compiler is
# a referent it is intalled in the P::L::F namespace
# and if it is a code referent it is dispatched.
$plugin->frobnicate;
The goal of this module is to provide a simple, flexable interface for developing plugin languages. Any language that can store its object data as a hash and implement a "compile" method that takes the method name as an argument can use this class. The Plugin framework gives runtime compile, install, and dispatch of user-defined code. The code doesnt have to be Perl, just something that the object handling it can compile.
The installer is language-agnostic: in fact it has no idea what the object does with the name passed to its compioer. All it does is (by default) install a returned reference and dispatch coderefs. This is intended as a convienence class that standardizes the top half of any plugin language.
Note that any referent returned by the compiler is installed. Handing back a hashref can deposit a hash into the callers namespace. This allows for plugins to handle command line switches (via GetoptFoo and a hashref) or manipulate queues (by handing back an [udpated] arrayref.
By default coderefs are dispatched via goto, which allows the obvious use of compiling the plugin to an anonymous sub for later use. This make the plugins something of a trampoline object, with the exception that the "trampolines" are the class methods rather than the object itself.
<<lessSYNOPSIS
package Myplugin;
use base qw( Plugin::Installer Plugin::Language::Foobar );
...
my $plugin = Myplugin->construct;
# frobnicate is passed first to Plugin::Installer
# via AUTOLOAD, then to P::L::Foobars compile
# method. if what comes back from the compiler is
# a referent it is intalled in the P::L::F namespace
# and if it is a code referent it is dispatched.
$plugin->frobnicate;
The goal of this module is to provide a simple, flexable interface for developing plugin languages. Any language that can store its object data as a hash and implement a "compile" method that takes the method name as an argument can use this class. The Plugin framework gives runtime compile, install, and dispatch of user-defined code. The code doesnt have to be Perl, just something that the object handling it can compile.
The installer is language-agnostic: in fact it has no idea what the object does with the name passed to its compioer. All it does is (by default) install a returned reference and dispatch coderefs. This is intended as a convienence class that standardizes the top half of any plugin language.
Note that any referent returned by the compiler is installed. Handing back a hashref can deposit a hash into the callers namespace. This allows for plugins to handle command line switches (via GetoptFoo and a hashref) or manipulate queues (by handing back an [udpated] arrayref.
By default coderefs are dispatched via goto, which allows the obvious use of compiling the plugin to an anonymous sub for later use. This make the plugins something of a trampoline object, with the exception that the "trampolines" are the class methods rather than the object itself.
Download (0.012MB)
Added: 2007-05-03 License: Perl Artistic License Price:
914 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 Brainfuck Compiler 2.0
Java Brainfuck Compiler is an optimising Brainfuck to Java bytecode compiler. more>>
The Java Brainfuck Compiler is a compiler for the uniquely powerful Brainfuck language, which produces Java bytecode that will run on any Java Virtual Machine (with no intermediate steps such as going by way of Java code).
<<less Download (0.010MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1682 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
Tk::Wizard::Installer 1.9451
Tk::Wizard::Installer is a Perl module for building-blocks for a software install wizard. more>>
Tk::Wizard::Installer is a Perl module for building-blocks for a software install wizard.
use Tk::Wizard::Installer 1.932;
my $wizard = new Tk::Wizard::Installer( -title => "Installer Test", );
$wizard->addDownloadPage(
-wait => undef,
#-on_error => sub { ... },
-no_retry => 1,
-files => {
http://www.cpan.org/ => ./cpan_index1.html,
http://www.cpan.org/ => ./cpan_index2.html,
http://www.leegoddard.net => ./author.html,
},
);
$wizard->addPage( sub {
return $wizard->blank_frame(
-title=>"Finished",
-subtitle => "Please press Finish to leave the Wizard.",
-text => ""
);
});
$wizard->Show;
MainLoop;
This module makes the first moves towards a Tk::Wizard extension to automate software installation, primarily for end-users, in the manner of Install Sheild.
If you are looking for a freeware software installer that is not dependant upon Perl, try Inno Setup - http://www.jrsoftware.org/. Its so good, even Microsoft have been caught using it.
<<lessuse Tk::Wizard::Installer 1.932;
my $wizard = new Tk::Wizard::Installer( -title => "Installer Test", );
$wizard->addDownloadPage(
-wait => undef,
#-on_error => sub { ... },
-no_retry => 1,
-files => {
http://www.cpan.org/ => ./cpan_index1.html,
http://www.cpan.org/ => ./cpan_index2.html,
http://www.leegoddard.net => ./author.html,
},
);
$wizard->addPage( sub {
return $wizard->blank_frame(
-title=>"Finished",
-subtitle => "Please press Finish to leave the Wizard.",
-text => ""
);
});
$wizard->Show;
MainLoop;
This module makes the first moves towards a Tk::Wizard extension to automate software installation, primarily for end-users, in the manner of Install Sheild.
If you are looking for a freeware software installer that is not dependant upon Perl, try Inno Setup - http://www.jrsoftware.org/. Its so good, even Microsoft have been caught using it.
Download (0.060MB)
Added: 2007-01-10 License: Perl Artistic License Price:
1019 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
C# Java Virtual Machine 1.0.1
C# Java Virtual Machine is a tiny implementation of the Java VM, including simple native classes. more>>
C# Java Virtual Machine is a tiny implementation of the Java VM, including simple native classes. This project is written using the C# language. The VM is very easily expandable by writing additional native or Java classes.
Enhancements:
- The DbConnection class, which provides a connection to MS SQL or PostgreSQL using ADO.NET, was added.
- The Syst.MachineName method, which returns the machine name, was added.
- String.startsWith and String.endsWith functions were added.
- Some comments for VM.cs were written.
<<lessEnhancements:
- The DbConnection class, which provides a connection to MS SQL or PostgreSQL using ADO.NET, was added.
- The Syst.MachineName method, which returns the machine name, was added.
- String.startsWith and String.endsWith functions were added.
- Some comments for VM.cs were written.
Download (0.40MB)
Added: 2007-05-25 License: GPL (GNU General Public License) Price:
884 downloads
CMF Quick Installer Tool 2.0.1
CMF Quick Installer Tool provides a a facility for comfortable activation/deactivation of CMF compliant products inside a CMF. more>>
CMF Quick Installer Tool provides a a facility for comfortable activation/deactivation of CMF compliant products inside a CMF.
Therefore it has to be installed as a tool inside a CMF portal, where it stores the information about the installed products.
The requirements for a product to be installable with QuickInstallerTool are quite simple (almost all existing CMF products fulfill them):
.External Product: The product has to implement an external method install in a python module Install.py in its Extensions directory.
.TTW Product: The product has to have a Install folder and have a python script titled install inside that folder.
Products can be uninstalled and QuickInstellerTool removes the following items a product creates during install:
.portal types
.portal skins
.portal actions
.portalobjects (objects created in the root of the portal)
.workflows
.left and right slots (also checks them only for the portal)
Attention: QuickInstallerTool just tracks which objects are ADDED, but not what is changed or deleted.
second Attention: QuickInstallerTool just can uninstall products that are installed via QuickInstallerTool
Enhancements:
- Adjusted installProduct method to be compatible with CMF 2.1
- Refactored ResourceRegistries support not to require the product itself to be installed in QI.
- Added the INonInstallable interface that is used to look up utilities.
- Added an option to omit snapshot creation which defaults to True to speed up.
- We automatically create a GenericSetup snapshot before and after installation.
<<lessTherefore it has to be installed as a tool inside a CMF portal, where it stores the information about the installed products.
The requirements for a product to be installable with QuickInstallerTool are quite simple (almost all existing CMF products fulfill them):
.External Product: The product has to implement an external method install in a python module Install.py in its Extensions directory.
.TTW Product: The product has to have a Install folder and have a python script titled install inside that folder.
Products can be uninstalled and QuickInstellerTool removes the following items a product creates during install:
.portal types
.portal skins
.portal actions
.portalobjects (objects created in the root of the portal)
.workflows
.left and right slots (also checks them only for the portal)
Attention: QuickInstallerTool just tracks which objects are ADDED, but not what is changed or deleted.
second Attention: QuickInstallerTool just can uninstall products that are installed via QuickInstallerTool
Enhancements:
- Adjusted installProduct method to be compatible with CMF 2.1
- Refactored ResourceRegistries support not to require the product itself to be installed in QI.
- Added the INonInstallable interface that is used to look up utilities.
- Added an option to omit snapshot creation which defaults to True to speed up.
- We automatically create a GenericSetup snapshot before and after installation.
Download (0.21MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
984 downloads
Java EDF files viewer 2.0.1
Java EDF files viewer is a multi-platform EDF file viewer. more>>
Java EDF files viewer is a multiplatform (Linux and Windows) EDF (European Data Format) files viewer written in Java and developped with Borland JbuilderX Foundation.
Usage
1. You need the Java software installed.
2. To execute the viewer
- type in command line: java -jar jEDF.jar
Enhancements:
- This release has hypnogram scoring, montage creation, spectral analysis, EEG event scoring, and a bilingual interface (English/French).
<<lessUsage
1. You need the Java software installed.
2. To execute the viewer
- type in command line: java -jar jEDF.jar
Enhancements:
- This release has hypnogram scoring, montage creation, spectral analysis, EEG event scoring, and a bilingual interface (English/French).
Download (0.22MB)
Added: 2006-11-05 License: GPL (GNU General Public License) Price:
1128 downloads
Java Neural Network Trainer 0.1c
Java Neural Network Trainer is a neural network trainer with the ability to easily add new training algorithms. more>>
Java Neural Network Trainer is a neural network trainer with the ability to easily add new training algorithms and training patterns.
Java Neural Network Trainer project includes a parallel training graphical interface where you can view each trainer working in real-time in parallel.
<<lessJava Neural Network Trainer project includes a parallel training graphical interface where you can view each trainer working in real-time in parallel.
Download (0.020MB)
Added: 2007-02-04 License: GPL (GNU General Public License) Price:
1000 downloads
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
<<lessDIME 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
Download (0.16MB)
Added: 2006-09-15 License: LGPL (GNU Lesser General Public License) Price:
1144 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 installer 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