Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Technology (https://thetfp.com/tfp/tilted-technology/)
-   -   Java stand-alone apps (https://thetfp.com/tfp/tilted-technology/36617-java-stand-alone-apps.html)

The_Dude 11-20-2003 10:46 PM

Java stand-alone apps
 
How exactly do i make one? i have a stand-alone *.java file, but i cant seem to make this an exe. the ide runs the file and produces the output, but how do i get it to run w/o an ide?

thanks!

charliex 11-21-2003 01:22 PM

well java doesn't run as an exe, since exe's are native code, the java interpreter java.exe is native though so you use that to start off your class. (the .java file is source so it needs to be compiled anyway, use javac from sun.java.com ) though it looks like you can already compile it to a class.

you can then package it into a jar and/or just run it with java classname.class etc

There are probably some class/jar > exe wrappers but they will likely do the same thing, the simplest thing is just to make a .bat file with the java classname.class command in it.

so a file called test.java goes to test.class which you can either run or package into a jar, and then run with either

java test.class
or
java -jar test.jar

on my window setup, i have jars automatically run by double click into the KVM, but since there are many flavours of java there isn't one global solution for that.

bogosj13 11-22-2003 09:06 AM

You can also use the 'Main-Class' attribute in the jar manifest, so that double clicking on the jar, or java -jar my.jar will work:

http://java.sun.com/docs/books/tutor.../manifest.html

alkaloid 11-24-2003 07:11 AM

You want nice pretty shortcut icon so that it runs just like a Windows native program? Double-click and run.

I don't know how to do it by hand but I know it can be done.

InstallAnywhere from zeroG is good java deployment tool.
http://www.zerog.com/

jEdit is very nice program that I use pretty much everday.
www.jedit.org

I like how JDisktReport looks and runs. Installs nicely.
http://www.jgoodies.com/


All times are GMT -8. The time now is 01:41 AM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47