×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Java
Posted by: joseifm
Added: Oct 8, 2014 12:08 AM
Views: 1840
Tags: java os sistema
  1.  //Sistema Operativo        
  2.       System.out.println("Sistema Operativo: " + System.getProperty("os.name"));
  3.       jTextArea1.append("Sistema Operativo: " + System.getProperty("os.name")+"\n");
  4.       //Arquitectura
  5.       System.out.println("Sobre arquitectura " + System.getProperty("os.arch"));
  6.       jTextArea1.append("Sobre arquitectura " + System.getProperty("os.arch")+"\n");
  7.       //Version  
  8.       System.out.println("Versión " + System.getProperty("os.version"));
  9.       jTextArea1.append("Versión " + System.getProperty("os.version")+"\n");