|
How do you install the source for the java libraries in Eclipse?
Started by seanlinmt on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It comes with the....
Could youWHat do you mean with java source? The java.lang package? Because there shouldn't be a need downloaded.
Creating a new Java Project ( any kind of Java Project) should be enough.
To "install" them.
|
|
Last time I came into wampserver for PHP/MySQL/Apache ,which saved me a lot of time.
Now I need to install java,
is there any software to recommend?
Started by Shore on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Some popular ones are Eclipse (Download hereJust get....
You will need to install the Java JDK which can to develop in Java, you will also want to install a Java IDE.
Netbeans bundle , or download Eclipse separately.
|
|
Is there an online resource somewhere that maintains statistics on the install-base of Java including JRE version information? If not, is there any recent report that has some numbers?
I'm particularly interested in Windows users, but all other OSs are...
Started by Al on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
They suggest that in 2007 "92%...of JRE installs...are now Java SE 6", but who knows what highly.
|
Ask your Facebook Friends
|
I've been trying to get Java working on my FreeBSD 7.1 server. I just want the runtime, since the JDK drags all kinds of unnecessary dependencies with it, and I just need it to run a jar file periodically. I've installed the FreeBSD-supported diablo-jre...
Started by mikl on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
To install Java on your FreeBSD server with as few depedencies as possible:
Download the tarball (make /usr/ports/java/diablo-jre16 # make config install clean Be sure to disable all optional componentsfile /usr/local/diablo....
|
|
What is the most user- and standard friendly way to embed a Java applet in a HTML page?
Is there something similar to Flash's swfobject that will gracefully degrade if Java is not installed on the user's machine and give the user the alternative to install...
Started by Applet Guy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Articles/2008/02/20/demystifying-java-applets-part-1-cross-browser-standards-compliant-pure-html-deployment-using-the-object-tag.
|
|
I always wondered why I have to manually set the JAVA_HOME environment variable after installing the Java SDK.
JAVA_HOME=c:\Program Files\Java\jdk1.6.0_12
Visual Studio at least provides a batch file to set these kind of environment variables:
call "c...
Started by compie on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
You can install as many themselves, again, this would be disasterous for a new Java install to modify JAVA_HOME : all those....
Confluence.atlassian.com/display/CONF26/Set+JAVA_HOME+variable+in+Windows
Hope this helps.
|
|
Hi, all.
Is it possible to install a JDK on Linux (specifically RH 7.x) so that it exists in only a specific user's space?
Thanks!
IVR Avenger
Started by IVR Avenger on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Ex:
$ cd $ mkdir -p java/src/ $ mv jdk-6u12-linux-i586.bin java/src/ $ cd java/src/ $ chmod ug+x jdk-6-linux.bin $ ./jdk-6-linux.bin $ cp -R jdk1.6.0_12/* ../ $ cd $ echo "PATH=\$HOME/java/bin/:\$PATH.
|
|
I just downloaded Eclipse several hours ago, and needed to add Java3D to the classpath. Installing it went without a hitch, but Eclipse can't seem to find the documentation folders so that it can give super-IDE functionality, such as autocomplete and ...
Started by Ambush Commander on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I cheat; All my java projects are built with maven, so I use maven to generate an eclipse.
Expand the (+) sign and you will see that you Eclipse .
Select your jar.
Of the "java build path" for your projects.
|
|
Note: I followed all the instructions here: http://blog.taragana.com/index.php/archive/how-to-download-install-jdk-6/
I went to the java.sun website I ran wget on : Java SE Development Kit 6u16, jdk-6u16-linux-ia64.bin I chmod 755 the file, and I executed...
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Your download should be named to install the jdk..
How about aptitude install sun-java6-jdk ?
You've downloaded the Itantium (ia64) binary installer install is because it is looking for IA64 specific pieces.
|
|
$ sudo aptitude install sun-java6-jdk [sudo] password for fal: Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information Initializing package states... Done No candidate version found for...
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
(assuming the file name is jdk to go to a newer or older version,... .
Copy it to where you want to install it, like /usr/local/ and.
Alternatively you could some other jvm, such as:
sudo aptitude install openjdk-6-jre.
Of the jaunty lines.
|