Home  |  Contact         

Zrinity is the leader in enterprise-class email marketing management solutions and content management solutions for marketing professionals and developers worldwide.
Products Services Solutions Support Resources Partners Company
Java, PHP, CF Code Samples

Writing the System properties with JSP

<%
java.util.Enumeration e = System.getProperties().propertyNames();
while( e.hasMoreElements() )
{
 String prop = (String)e.nextElement();
 out.print(prop);
 out.print(" = ");
 out.print( System.getProperty(prop) );
 out.print("<br>");
}

%>



More Code Samples



  
home products services partners company support contact
Copyright 2006 © Zrinity Inc. All rights reserved.     View our privacy policy         September 7, 2010