java命令行
Usage: java [-options] class [args...]
? ? ? ? ? ?(to execute a class)? ?or ?java [-options] -jar jarfile [args...]
? ? ? ? ? ?(to execute a jar file)
-------------
1. 注意參數(shù)順序,options要放在java后面;
2. 在java代碼中,可以通過一下代碼打印各種properties:
System.getProperties().forEach((x,y)->System.out.println(x+":"+y));3. -cp(-classpath),多個路徑時,用“;”隔開;
4. -D,用于設(shè)置用戶自定義參數(shù);
參考:http://soft.chinabyte.com/database/183/11590183.shtml
總結(jié)
- 上一篇: Spring Controller接收h
- 下一篇: Linux下mysql备份