• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Java IDEs using webstart?

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.
 
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.
 
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.
 
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.
 
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
 
Back
Top