Answers for "how to read command line arguments in java"

3

java command line arguments

class CommandLineExample{  
public static void main(String args[]){  
System.out.println("Your first argument is: "+args[0]);  
}  
}

//Now follow these steps
compile by > javac CommandLineExample.java  
run by > java CommandLineExample sonoo
Posted by: Guest on March-15-2020
1

command line arguments in java

public class CommandLine {
   public static void main(String args[]) {
      for(int i = 0; i<args.length; i++) {
         System.out.println("args[" + i + "]: " + args[i]);
      }
   }
}
Posted by: Guest on April-30-2020
0

java read file from command line argument

import java.util.Scanner;
import java.io.File;
Scanner input = new Scanner(new File(args[0])); //Where args[0] is the cmd argument, the file name
Posted by: Guest on April-02-2020

Code answers related to "how to read command line arguments in java"

Python Answers by Framework

Browse Popular Code Answers by Language