/**
* The contents of this file are subject to the AED Public Use License Agreement, Version 1.0 (the "License");
* use in any manner is strictly prohibited except in compliance with the terms of the License.
* The License is available at http://gatherdata.org/license.
*
* Copyright (c) AED. All Rights Reserved
*/
//package com.nowjava;/** 时代Java公众号 - N o w J a v a . c o m 提 供 **/
import java.net.InetAddress;
import java.net.UnknownHostException;
public class Main {
public static void main(String[] argv) throws Exception {
System.out.println(getHostName());
}
/**
* Gets the hostname of this system.
*
* @return hostname, or "localhost" if hostname could not be determined
*/
public static String getHostName() {
String hostname = null;
try {
InetAddress addr = InetAddress.getLocalHost();
hostname = addr.getHostName();
/**代码未完, 请加载全部代码(NowJava.com).**/
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。