Java IDEs using webstart?

Kilrsat

Golden Member
Jul 16, 2001
1,072
0
0
I don't think you'll have much luck here. Licensing does not permit people from ripping the compiler out of Sun's tools.jar or including the tools.jar file itself along with their application.

So you would then be limited to only those adventurous enough to implement their own java compiler, which doesn't include an extensive list of candidates.

Your best bet may be to hack together a basic text editor along with the com.sun.tools.javac from your own rightfully acquired tools.jar, and avoid distributing it.

Its a fine line, but I believe that will keep you own the right side of things.
 

znaps

Senior member
Jan 15, 2004
414
0
0
I don't know of any IDEs that install using Webstart.

Due to the nature of IDEs, it wouldn't make sense to use Webstart. Why not install a 1.4.2 JDK, then Eclipse?

and by the way, Eclipse *does* come with a compiler (not Sun's), but you need a JRE to run it so you might as well install the JDK anyway to get Sun's compiler and the JRE.
 

AFB

Lifer
Jan 10, 2004
10,718
3
0
Originally posted by: znaps
I don't know of any IDEs that install using Webstart.

Due to the nature of IDEs, it wouldn't make sense to use Webstart. Why not install a 1.4.2 JDK, then Eclipse?

and by the way, Eclipse *does* come with a compiler (not Sun's), but you need a JRE to run it so you might as well install the JDK anyway to get Sun's compiler and the JRE.

It does? I have a JRE just not a JDK and I can't install.
 

znaps

Senior member
Jan 15, 2004
414
0
0
Open the Java perspective then create a new Java project.

Eclipse doesn't use the file concept. You need to create projects and packages. Once you get used to that concept it's a breeze.
 

AFB

Lifer
Jan 10, 2004
10,718
3
0
Originally posted by: znaps
Open the Java perspective then create a new Java project.

Eclipse doesn't use the file concept. You need to create projects and packages. Once you get used to that concept it's a breeze.

Weird