Answers:
您可以使用类似的方法来执行此操作,因此,如果未指定任何参数,它将继续运行:
public static void main(String[] args) {
try {
String one = args[0];
String two = args[1];
}
catch (ArrayIndexOutOfBoundsException e){
System.out.println("ArrayIndexOutOfBoundsException caught");
}
finally {
}
}
然后启动应用程序:
java -jar myapp.jar arg1 arg2