4
votes
4answers
650 views
Getting Java JDK to compile on ubuntu
I'm trying to start working with Java, but so far haven't been able to get it on my machine properly. I'd really like to be able to compile from command line. After following the i …
1
vote
1answer
22 views
Where to set JDK to be used for SunOne server?
Where to set the JDK to be used by the SunOne server on Solaris?
Is it all configured via an environment variable like JDK_HOME or JAVA_HOME, or is there a config file for the Sun …
0
votes
5answers
78 views
Differences when compiling Java with GNU Compiler for Java instead of the Sun JDK
I'm working on a school project where I am required to use the GNU Compiler for Java. I've always worked using the official Sun JDK and now I'm concerned about differences that mig …
1
vote
3answers
252 views
Step through JDK source code in IntelliJ IDEA
How can I step through JDK source code in IntelliJ IDEA 7 and see the debug info? I can currently hit breakpoints and step through the code, but the debug info is not available. …
0
votes
3answers
68 views
Does Liferay require the Jikes compiler?
All Liferay docs seem to suggest that it is necessary to install the Jikes compiler in addition to the JDK. Is this really needed, to do Liferay portlet dev, or can I just suffice …
1
vote
4answers
105 views
where can I get the latest JRE / JDK as a zip file, I mean, no exe installer
You may call me a maniac, but I like to be sure that just by copying the contents of the java folder and setting the environment variables, everything will work fine.
So I usually …
2
votes
2answers
72 views
How do I find javac.exe programmatically?
I'm calling javac from C# code. Originally I found its location only as follows:
protected static string JavaHome
{
get
{
return Environment.GetEnvironmentVariable …
0
votes
1answer
60 views
XSLT 2.0 support in JDK 6?
Does JDK 6 support XSLT 2.0 for transformation.
My question is, does it come with an XSLT processor built for XSLT 2.0? or DO I need to go for other libraries like Saxon.
2
votes
6answers
685 views
JDK Download problem: Your download transaction cannot be approved. Contact Customer Service.
I tried to download the JDK last friday and then again today and was "greeted" with the following message:
"Your download transaction cannot be approved. Contact Customer Service." …
0
votes
6answers
372 views
How install a specific jdk on a mac ?
Hi everyone,
I want to install a specific jdk (the latest for example).
For this, i went to jdk download homepage: http://java.sun.com/javase/downloads/index.jsp
I look for a mac …
1
vote
2answers
45 views
Why is EventListenerList traversed backwards in fireFooXXX()?
I don't understand the rationale of this code, taken from javax.swing.event.EventListenerList docs:
protected void fireFooXXX() {
// Guaranteed to return a non-null array
…
1
vote
1answer
134 views
Depending on com.sun.javadoc from tools.jar (Sun JDK) in Eclipse
One of our plugins requires an installed JDK, not just an JRE. We need com.sun.javadoc and friends from tools.jar. I do not think Sun's license will allow redistributing tools.jar …
1
vote
2answers
40 views
JavaFX JDK not found
I'm trying to install JavaFX for the first time and it says that version 1.6.0 or higher is required but none found. Also when I load a JavaFX app in firefox or chrome it says it c …
0
votes
1answer
61 views
What does Java Error “Your active platform is: JDK_1.6, but the corresponding property “platforms.JDK_1.6.home” is not found in the project’s properties files” mean?
I'm a Java noob (but have been programming for 25+ years, and have worked with OO languages from day 1).
All of a sudden I started getting this error:
Your active platform is: JD …
2
votes
4answers
499 views
java isEmpty() undefined for string
I'm working on a school project in eclipse, and when I try and use the isEmpty() method on a String, Eclipse shows up the following error:
"The method isEmpty() is undefined for t …
