有没有办法让c#中的system.environment.machinename
返回相同的东西 - 但是在java中?
我已尝试InetAddress.getLocalHost().getHostName();
并使用JCIFS开源库。
答案 0 :(得分:0)
您在使用JCIFS时尝试过吗?
InetAddress addr = InetAddress.getByName("127.0.0.1");
String host = addr.getHostName();
当你尝试
时得到了什么InetAddress.getLocalHost()的gethostname();