java中的system.environment.machinename?

时间:2014-06-25 13:23:32

标签: java netbios

有没有办法让c#中的system.environment.machinename返回相同的东西 - 但是在java中?

我已尝试InetAddress.getLocalHost().getHostName();并使用JCIFS开源库。

1 个答案:

答案 0 :(得分:0)

您在使用JCIFS时尝试过吗?

InetAddress addr = InetAddress.getByName("127.0.0.1");
String host = addr.getHostName();

当你尝试

时得到了什么
  

InetAddress.getLocalHost()的gethostname();