View Single Post
  #2  
Old January 17th, 2002, 03:35 PM
blb blb is offline
`'
 
Join Date: Apr 2001
Location: CO, USA
Posts: 651
Thanks: 0
Thanked 0 Times in 0 Posts
blb is on a distinguished road
There must be more going on against the args given to main; the following

Code:
public class jtest
{
   public static void main( String args[] )
   {
      System.out.println( "args[ 0 ] is " + args[ 0 ] );

      System.exit(0);
   }
}
when run

Code:
$ java jtest http://mysite.com/1.1.1/myothercode.jar
prints what is expected

Code:
args[ 0 ] is http://mysite.com/1.1.1/myothercode.jar
Reply With Quote