자바 랜 의 모든 호스트 이름과 IP 주 소 를 가 져 옵 니 다.
명령 하 다.
의의
net view
랜 의 모든 호스트 이름 가 져 오기
ipconfig -all
로 컬 IP, 호스트 이름, MAC 주소 가 져 오기
arp -a
이 랜 의 모든 IP 주소 와 물리 주 소 를 가 져 옵 니 다.
ping -a x.x.x.x
x. x. x. x 의 호스트 이름 가 져 오기
호스트 이름
MAC 주소 가 져 오기
java exec
외부 명령 실행
String command = "net view"
Runtime r = Runtime.getRuntime();
Process p = r.exec(command);
BufferedReader br = new BufferedReader(new InputStreamReader(p
.getInputStream()));
랜 IP 추출
public static List<String> getIPs()
{
List<String> list = new ArrayList<String>();
boolean flag = false;
int count=0;
Runtime r = Runtime.getRuntime();
Process p;
try {
p = r.exec("arp -a");
BufferedReader br = new BufferedReader(new InputStreamReader(p
.getInputStream()));
String inline;
while ((inline = br.readLine()) != null) {
if(inline.indexOf(" ") > -1){
flag = !flag;
if(!flag){
// " "
break;
}
}
if(flag){
count++;
if(count > 2){
// IP
String[] str=inline.split(" {4}");
list.add(str[0]);
}
}
System.out.println(inline);
}
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(list);
return list;
}
IP 로 호스트 이름 추출
public static Map<String,String> getHostnames(List<String> ips){
Map<String,String> map = new HashMap<String,String>();
System.out.println(" hostname...");
for(String ip : ips){
String command = "ping -a " + ip;
Runtime r = Runtime.getRuntime();
Process p;
try {
p = r.exec(command);
BufferedReader br = new BufferedReader(new InputStreamReader(p
.getInputStream()));
String inline;
while ((inline = br.readLine()) != null) {
if(inline.indexOf("[") > -1){
int start = inline.indexOf("Ping ");
int end = inline.indexOf("[");
String hostname = inline.substring(start+"Ping ".length(),end-1);
System.out.println(hostname);
map.put(ip,hostname);
}
}
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println(" !");
return map;
}
결실
{ 222.26.28.51=BY-201507012043, 224.0.0.2=all-routers.mcast.net, 222.26.28.20=xxx-PC, 224.0.0.22=igmp.mcast.net, 222.26.28.218=xxx-PC, 222.26.28.223=xxx-PC}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.