PC-ID und User-ID

the_skywalker

Mitglied
Guten Morgen,

wie kann ich denn den PC-User (ID) und den PC-Namen auslesen
Ich bin noch ein blutiger Anfänger. Ich hoffe mir kann jemand einen Rat geben.

Vielen Dank

Sky
 
Hallo!

Schau mal hier:
Code:
/**
 * 
 */
package de.tutorials.training;

import java.net.InetAddress;

/**
 * @author Darimont
 * 
 */
public class SystemPropertiesExample {

	/**
	 * @param args
	 */
	public static void main(String[] args) throws Exception {
		System.out.println("Username: " + System.getProperty("user.name"));
		System.out.println("Hostname: "
				+ InetAddress.getLocalHost().getHostName());
	}
}

Gruß Tom
 
Zurück