Java Notes: Difference between revisions

From Federal Burro of Information
Jump to navigationJump to search
(Created page with "<pre> import java.util.Properties; class HelloWorldApp { public static void main(String[] args) { Properties myprops = System.getProperties(); System.out.println("He...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 12: Line 12:


</pre>
</pre>
huge mem calculator:<br>
http://www.peuss.de/node/67
http://www.tikalk.com/alm/forums/tuning-big-java-heap-and-linux-huge-pages
http://javabook.compuware.com/content/memory/analyzing-java-memory.aspx

Latest revision as of 18:11, 13 May 2013


import java.util.Properties;

class HelloWorldApp {
 public static void main(String[] args) {
        Properties myprops = System.getProperties();
  System.out.println("Hello World!"); // Display the string.
        myprops.list(System.out);
 }
}

huge mem calculator:
http://www.peuss.de/node/67

http://www.tikalk.com/alm/forums/tuning-big-java-heap-and-linux-huge-pages

http://javabook.compuware.com/content/memory/analyzing-java-memory.aspx