2018-06-03 22:26:41 +08:00

34 lines
1.0 KiB
Plaintext

<%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/IncludeBegin.jsp"%>
<body class="ListPage" leftmargin="0" topmargin="0" >
<div id="Layer1" style="position:absolute;width:100%; height:100%; z-index:1; overflow: auto">
<div class="strip_tit" >
<table border=1 cellspacing=0 cellpadding=0 bordercolordark="#FFFFFF" bordercolorlight="#666666" style='cursor: pointer;' width='100%'>
<tr bgcolor="#00659C" valign=center height="20">
<td><font color="#FFFFFF">ϵͳ»·¾³²ÎÊý</font></td>
</tr>
</table>
</div>
<div class="strip_doc" style="height:120%;display: block"">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<ul>
<%
Map<String,String> envs = System.getenv();
Iterator<?> ir = envs.keySet().iterator();
for (int i=1; ir.hasNext();i++) {
String sKey = (String) ir.next();
%>
<tr>
<td width="100%" >
<li>(<%=i%>)[<%=sKey%>]=<strong>[<%=envs.get(sKey)%>]</strong></li>
</td>
</tr>
<%
}
%>
</ul>
</table>
</div>
</div>
</body>
<%@ include file="/IncludeEnd.jsp"%>