Thread: Copying a File
View Single Post
Old 10-19-2012, 08:12 PM   PM User | #5
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,662
Thanks: 4
Thanked 2,452 Times in 2,421 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
The main method signature in Java is only a string array.
To prevent out of bound exceptions, you can either try/catch them or simply verify the length first:
PHP Code:
public static void main(String[] argv)
{
    if (
argv.length != 2)
    {
        
System.out.println("Incorrect command line call of application.");
    }
    else
    {
        
String sOriginating argv[0];
        
String sDestination argv[1];
        
// copy stuff here.
    
}

Fou-Lu is offline   Reply With Quote