欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

经常遇到LINUX与WINDWO下面的路径不一样解决方案

程序员文章站 2022-07-12 11:10:14
...

在linux与window下\与/的区别,可以通过以下方法优雅解决:

public static void main(String[] args) {
		Properties properties = System.getProperties();
		Enumeration<?> propertyNames = properties.propertyNames();
		while (propertyNames.hasMoreElements()) {
			String key = (String)propertyNames.nextElement();
			System.out.println(key+"---->"+properties.getProperty(key));
		}
	}