标签: java command
有时我们会以这种方式在命令提示符下运行java程序
java -jar myjarfile.jar -a "testing" -b "testing2"
我如何知道哪个参数属于哪个参数。
我的代码不起作用
String context = System.getProperty("-a") System.out.println(context) //returns null