2 尽量不要写与平台相关的代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2 尽量不要写与平台相关的代码相关的知识,希望对你有一定的参考价值。
比如在windows linux 在的文件分隔符都是不一样的 应该使用代码获取 而不能写死
Properties properties=System.getProperties();
Set<Object> keys=properties.keySet();
for(Object key:keys)
{
String str=(String)key;
System.out.println("属性:"+key+" "+"值:"+properties.getProperty(str));
}
以上是关于2 尽量不要写与平台相关的代码的主要内容,如果未能解决你的问题,请参考以下文章