Hello frns..
I want to know is there any way to run java program without installing jdk.
I want to run my code on system which dnt have jdk installed on it. is it possible??
plz rply..thanx..
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hello frns..
I want to know is there any way to run java program without installing jdk.
I want to run my code on system which dnt have jdk installed on it. is it possible??
plz rply..thanx..
The JRE should be all that is needed to execute a normal java program.way to run java program without installing jdk
If you don't understand my answer, don't ignore it, ask a question.
Welcome to the forum! Please read this topic to learn how to post code in code or highlight tags and other useful info for newcomers, including a few "house rules" that you'd try to follow when visiting someplace new.
In what form is the code? Has it been compiled into .class files?I want to run my code . . .
ya i have web server code.
and its compiled in .class
its working with command line and eclipse. I want to know is there any other way to run it .
.class files can be taken to and run on any system on which the JRE has been installed, providing the JRE isn't so old that the .class files aren't compatible. You can copy them directly or package them into a runnable .jar file. I've had good luck exporting runnable .jar files from Eclipse, but others recommend building .jar files outside the IDE, which is relatively simple. Refer to the Eclipse Wiki/tutorials and the Java tutorials for help in these areas, if needed.
eku (January 25th, 2014)