输出所选系统属性

<%--
  Copyright (c) 2002 by Phil Hanna
  All rights reserved.
  
  You may study, use, modify, and distribute this
  software for any purpose provided that this
  copyright notice appears in all copies.
  
  This software is provided without warranty
  either expressed or implied.
--%>
<%@ page session="false" %>
<html>
<head>
<title>Selected System Properties</title>
</head>
<body>
<h1>Selected System Properties</h1>
<table border="1" cellpadding="3" cellspacing="0">
<%
   final String[] propNames = {
      "java.awt.printerjob",
      "java.class.path",
      "java.class.version",
      "java.ext.dirs",
      "java.library.path",
   };
   for (int i = 0; i < propNames.length; i++) {
      String name = propNames[i];
      String value = System.getProperty(name);
%>
<tr>
   <td align="left" valign="top"><%= name %></td>
   <td align="left" valign="top"><%= normalize(value) %></td>
</tr>
<% } %>
</table>

</body>
</html>

<%!
   private static final String normalize(String s)
   {
      StringBuffer sb = new StringBuffer();
      String[] strs = s.split(";");
      for(String str : strs) {
    	  sb.append(str+"<br>");
      }
      return sb.toString();
   }
%>
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值