gpt4 book ai didi

java - 要在 jlist 中显示的联网计算机名称

转载 作者:行者123 更新时间:2023-12-01 15:53:14 27 4
gpt4 key购买 nike

如何从联网位置检索或收集所有计算机名称?我需要一些关于如何从头开始的指南或示例代码。

最佳答案

以最简单的形式在IP范围内运行循环
执行命令nslookup

import java.io.*;  
public class TestExec {
public static void main(String[] args) {
try {
Process p = Runtime.getRuntime().exec("nslookup xx.xx.xx.xx ");
BufferedReader in = new BufferedReader(
new InputStreamReader(p.getInputStream()));
String line = null;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}

并解析响应

关于java - 要在 jlist 中显示的联网计算机名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5576235/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com