document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.net.*;
  2. public class getName {
  3. public static void main(String args[]) throws Exception {
  4. InetAddress host = null;
  5. host = InetAddress.getLocalHost();
  6. System.out.println("Nama komputer Anda: " +
  7. host.getHostName());
  8. }
  9. }
');