日期:2014-05-20 浏览次数:20778 次
public class Test { public static void main(String[] args) { String path = System.getProperty("my.property.path"); String file = System.getProperty("my.property.file"); System.out.println("path = " + path); System.out.println("file = " + file); } }