KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SampleSystemUt


1 /**
2  * MiniInstaller Sample Library
3  * Sample System Utility
4  * @author Walter Gamba
5  */

6 public class SampleSystemUt {
7
8   public SampleSystemUt() {
9   }
10
11   public static String JavaDoc getUser(){
12       return System.getProperty("user.name");
13   }
14 }
Popular Tags