Submitted by ramez.hanna on Wed, 23/06/2004 - 13:28.
( categories: )
what do i need to run java application on fedora core 2 and where to download it?
|
Submitted by ramez.hanna on Wed, 23/06/2004 - 13:28.
( categories: )
what do i need to run java application on fedora core 2 and where to download it? |
User loginNavigationActive forum topicsUpcoming eventsPollWould you like to change the current eglug theme to be the one proposed in http://eglug.org/node/3180? sure, the proposed theme looks great. 62% not really, I'm compfortable with the current theme. 12% I do want to change, but can we choose another theme? I don't like the proposed one. 26% Total votes: 34
NewsForgeLinux Counter Egypt StatisticsWho's onlineThere are currently 0 users and 5 guests online.
|
Re:Java
go to http://java.sun.com/products/archive/j2se/1.4.2_03/index.html
download the SDK *NOT* the JRE, also download the rpm version
under /etc/profile.d create a file "java.sh" and add to it the following :
export JAVA_HOME="/usr/java/j2sdk1.4.2_04"
export JAVA_PATH="$JAVA_HOME"
export JDK_HOME="$JAVA_HOME"
export PATH="$PATH:$JAVA_HOME/bin"
then type "java xxx.class" or "javac xxx.java" if you need to compile from src.
but if you have a large project y'll probably need ant or maven
but thats another story, so if you need help with'em just holler :)
AMG. -When things have gone from bad to worse, The cycle will repeate itself.
sorry i have a comment
salamo 3alekom to run a java program u should type java xxxx because java xxxx.class not work
Dag Wieers has j2re in his re
Dag Wieers has j2re in his repository: http://www.fedorafaq.org/#java
What's wrong with java
to compile java object code "javac xxx.java" and to run the class generated .. "java xxx " and any other arguments 'll be entered if needed ... depends on your code