Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Sunday, December 2, 2007

java code for Selected System Properties

<%--
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" %>


Selected System Properties


Selected System Properties



<%
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);
%>




<% } %>

<%= name %> <%= normalize(value) %>



<%!
private static final String normalize(String s)
{
StringBuffer sb = new StringBuffer();
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
sb.append(c);
if (c == ';')
sb.append("
");
}
return sb.toString();
}
%>

No comments: