Guest User

Untitled

a guest
Nov 23rd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class WinDetect {
  2.  
  3. private static String OS = System.getProperty("os.name").toLowerCase();
  4. private static String BIT = System.getProperty("os.arch").toLowerCase();
  5. private static String VERSION = System.getProperty("os.version").toLowerCase();
  6.  
  7. public static void main(String[] args) {
  8.  
  9. System.out.println("OS "+OS + " "+BIT+" bit,"+ " "+" VERSION "+VERSION);
  10. }
  11. }
Add Comment
Please, Sign In to add comment