Re: how to install and build

2013-05-13 Thread Andy Nuss
t" Sent: Friday, May 10, 2013 6:17 AM Subject: Re: how to install and build Hi Andy If you only want to make small changes to .java files, just download the source code for those files, compile them with     javac -d /tmp Those.java and call     java -Xbootclasspath/p:/tmp YourApp

Re: how to install and build

2013-05-10 Thread Weijun Wang
Hi Andy If you only want to make small changes to .java files, just download the source code for those files, compile them with javac -d /tmp Those.java and call java -Xbootclasspath/p:/tmp YourApp to try out. If you don't like the -X option, you can call "jar uvf" to update the cla

how to install and build

2013-05-10 Thread Andy Nuss
Hi, I want to install jdk 7 project for linux 64, and make a simple change to Object.java and test it.  What do I do? Andy