%@ page contentType="text/html; charset=GBK"%>
<%@ include file="/IncludeBegin.jsp"%>
<%
Map envs = System.getenv();
Iterator> ir = envs.keySet().iterator();
for (int i=1; ir.hasNext();i++) {
String sKey = (String) ir.next();
%>
- (<%=i%>)[<%=sKey%>]=[<%=envs.get(sKey)%>]
|
<%
}
%>
<%@ include file="/IncludeEnd.jsp"%>