jsp中如何输出操作系统的相关信息呢?

书欣 Servlet 发布时间:2022-10-19 10:11:53 阅读数:1961 1
下文笔者讲述jsp中列举出操作系统的相关信息的简介说明,如下所示
实现思路:
    借助Runtime.getRuntime()中的相关方法
	即可打印出当前服务器的信息
例:
void printSystemInfo(JspWriter out)throws Exception{
    try{pro.destroy();}catch(Exception e){}
        Map map=null;
        Set set=null;
        Iterator it=null;
    map=System.getProperties();
    set=map.keySet();
    it=set.iterator();
    out.println("<hr>系统属性:<ul>");
        while(it.hasNext()){
        Object oName=it.next();
        out.println("<li>"+oName+" [ "+map.get(oName)+" ]");
    }

    out.print("</ul><hr>CPU :");
    out.print(Runtime.getRuntime().availableProcessors()+" <br>");
    out.print("空闲内存:"+getSize(Runtime.getRuntime().freeMemory()));
    out.print("<br>总内存 :"+getSize(Runtime.getRuntime().maxMemory()));
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/Servlet/202210/278.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者