提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
获取系统属性
import java.util.Properties;/** from 时代Java - N o w J a v a . c o m**/ public class PropertiesTest { public static void main(String[] args) { Properties pro = System.getProperties(); pro.list(System.out); System.out.println(System.getProperty("file.encoding")); } }