java显示当前运行时的参数(java运行参数)
显示当前运行java代码的运行时的各种参数。
不带显String操作。
package systeminfo;
import java.util.Iterator;
import java.util.Map.Entry;
import java.util.Properties;
public class sysinfo {
public static void main(String[] args) {
Properties p = System.getProperties();
Iterator<Entry<Object, Object>> it= p.entrySet().iterator();
while(it.hasNext()){
Entry<Object,Object> item=it.next();
System.out.print(item.getKey()+"===");
System.out.println(item.getValue());
}
}
}
简单版本
package systeminfo;
public class sysinfo {
public static void main(String[] args) {
String s = System.getProperties().toString();
System.out.println(s);
}
}
String版本
package systeminfo;
public class sysinfo {
public static void main(String[] args) {
String s = System.getProperties().toString();
System.out.println(s);
String[] ss=s.split(",");
for(String e:ss){
System.out.println(e);
}
}
}
相关文章
详解Springboot @Cacheable 注解(指定缓存位置)
这篇文章主要介绍了详解Springboot @Cacheable 注解(指定缓存位置),使用 @Cacheable 注解就可以将运行结果缓存,以后查询相同的数据,直接从缓存中取,不需要调用方法,需要的朋友可以参考下2023-09-09解决springboot使用logback日志出现LOG_PATH_IS_UNDEFINED文件夹的问题
这篇文章主要介绍了解决springboot使用logback日志出现LOG_PATH_IS_UNDEFINED文件夹的问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2021-04-04
最新评论