>From my experience the following things need to be done. 1. The location of the java executable. This is in a directory called bin under usually what is referred to as JAVA_HOME. For example lets say java in installed in /sys/java31bt/v5r0m0/usr/lpp/java/J5.0 This would usually be assigned to a script variable JAVA_HOME, either via the .profile or in /etc/profile but technically is not required by anything with native java. Thus in this case the full executable would be /sys/java31bt/v5r0m0/usr/lpp/java/J5.0/bin/java 2. Create some EBCDIC source in the directory of your choice, say /u/user/mydir, called HelloWorld.java 3. make sure you are in that directory via the cd /u/user/mydir command 4. Compile the HelloWorld program via /sys/java31bt/v5r0m0/usr/lpp/java/J5.0/bin/javac HellowWorld.java This creates the HelloWorld.class in the same directory 5. Run the java program via /sys/java31bt/v5r0m0/usr/lpp/java/J5.0/bin/java HellowWorld Of course on quickly becomes tired of entering the long directory names and starts to put together simple shell scripts to minimize all the typing needed, etc.
Brad Taylor -----Original Message----- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of Robert Pelletier Sent: Friday, April 13, 2007 11:35 AM To: [EMAIL PROTECTED] Subject: IVP for JAVA Hi All. Could someone point me too the IVP for JAVA when installed with OS390 V2R10? Need to run HELLO WORLD ASAP to prove to users JAVA on frame can work. Thanks all. Have a Nice Day ! Bob Pelletier Connecticut Student Loan Foundation Rocky Hill, Ct. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

