|
-
Aug 14th, 2001, 11:01 PM
#1
Thread Starter
Hyperactive Member
Making a java .exe
Is there anything else to make exe's out of java? I tried geting JtoEXE but there seems to be nowhere you can download it form. Even the company's site is 'under construction'.
Top Tip: You can make friends and impress the opposite sex at geeky cocktail parties by saying "DB" instead of database. - Karl Moore
-
Aug 14th, 2001, 11:18 PM
#2
Dazed Member
-
Aug 14th, 2001, 11:19 PM
#3
Dazed Member
This is what crypticblade said..... Sun's site should be running
as for the other one im not sure.
-
Aug 16th, 2001, 12:19 PM
#4
Thread Starter
Hyperactive Member
Thanks, I got it but JtoEXE does not work with Java 2. Bummer.
Top Tip: You can make friends and impress the opposite sex at geeky cocktail parties by saying "DB" instead of database. - Karl Moore
-
Aug 16th, 2001, 11:10 PM
#5
Are you certain that it won't work with Java 2? I was hoping that would simplify my deployment issues.
-
Aug 16th, 2001, 11:17 PM
#6
Thread Starter
Hyperactive Member
At least the version I found, when I tried to use it, there were redio buttons that asked me what version of java Im using, and the options were 1.1 and 1.2
Top Tip: You can make friends and impress the opposite sex at geeky cocktail parties by saying "DB" instead of database. - Karl Moore
-
Aug 17th, 2001, 08:13 AM
#7
Hyperactive Member
Java 1.1 is Java 1
Java 1.2 is Java 2
Java 1.3 is Java 3
So you should be good to go.
-
Aug 18th, 2001, 09:48 PM
#8
Thread Starter
Hyperactive Member
Nope, I think youre confusing the JDK version with the language version. There is no Java 3 (yet).
Top Tip: You can make friends and impress the opposite sex at geeky cocktail parties by saying "DB" instead of database. - Karl Moore
-
Aug 20th, 2001, 05:20 PM
#9
SDK 1.2 and SDK 1.3 is Java 2, but the JtoExe.exe says to choose JDK 1.1 or JDK 2.0. I'm pretty sure that JDK and SDK follow the same version numbers, but I'm assuming that the JtoExe.exe means Java 2 when it says JDK 2.0.
I haven't tested it yet on my Java 2 app using SDK 1.3.
-
Aug 20th, 2001, 06:41 PM
#10
Any Luck with JtoExe?... THUMBS UP
Okay, I decided to try a "Hello World" java console application with JtoExe.exe. Sure it created an executable that ran the popup window that said I had 30 days left on this unregistered version. But my "app" never said, "Hello World" although the popup said it would start in 5, 4, 3, 2, 1, 0 seconds.
Also, the command prompt I was running from returned before the popup window hid. That might be an important point for a console app. I guess I'll try a Frame. But I think at least a new shell should have opened (like when you run a dos batch file from explorer).
Okay, a Frame works. So I guess you need a GUI.
Code:
import java.awt.*;
public class Hw{
public static void main(String[] args){
System.out.println("Hello World");//Didn't Work
new Frame().show();//Works
}
}
I'll give it the thumbs up for my immediate need. Their site is under construction when I was looking for the cost for a fully functioning version though.
Both the above Hw app and my more complex app are about 205KB (in the unregistered version). That's strange, but I'm not complaining.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|