我正在编写一个简单的程序,从MySQL数据库中提取计算机名称,然后将这些名称存储到String数组列表中(这部分工作正常)。之后我编写了一个类和一个方法,它将String作为参数(将是计算机名称)并尝试ping它。以下是该类的代码:
public class Ping
{
public void pingHost(String hostName)
{
try
{
InetAddress inet = InetAddress.getByName(hostName);
boolean status = inet.isReachable(5000);
if (status)
{
System.out.println(inet.getHostName() + " Host Reached\t" + inet.getHostAddress());
}
else
{
System.out.println(inet.getHostName() + " Host Unreachable");
}
}
catch (UnknownHostException e)
{
System.err.println(e.getMessage() + " Can't Reach Host");
}
catch (IOException e)
{
System.err.println(e.getMessage() + " Error in reaching the Host");
}
}
问题是,即使我可以手动ping它们,或者我将计算机名称硬编码为“hostName”,我仍会为大多数计算机抛出UnknownHostException
。
以下是我的主要观点:
public static void main(String[] args) throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException
{
ArrayList <String> list = new ArrayList<String>();
MySQLConnect myConnection = new MySQLConnect();
myConnection.importData(list);
Ping pingComputer = new Ping();
pingComputer.pingHost(list.get(87));
}
现在我只想尝试一台投掷UnknownHostException
但可以手动ping通的计算机。任何人都知道为什么会这样?
编辑...
再解释一下这个问题。例如,在main中,如果我将这些参数传递给pingHost
:
pingComputer.pingHost("ROOM-1234");
它很好并且返回正确的主机名/地址。但list.get(87)
会返回相同的主机名“ROOM-1234”,但会抛出UnknownHostException
吗?这让我很困惑,不知道为什么它不起作用。
修改
哇终于明白了。当我直接传递字符串时,因为“ROOM-1234”,因为没有空格并且从数组获取是因为list.get(87)
返回同样的东西,但当我检查charLength
时,原因ping正在工作,它返回了一个不同的值:)所以我最终使用trim
来摆脱空格,现在它很棒。
pingComputer.pingHost(list.get(87).trim());
感谢所有的建议!
答案 0 :(得分:-2)
亲爱的实际上,您使用的代码是检查主机是否可以访问。
使用以下类来ping Windows PC使用ping方法,但除了windows pc之外,使用isreachable。
package com.utils;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.InetAddress;
import java.net.UnknownHostException;
public class Ping {
public Boolean IsReachable(String ipaddress) {
try {
final InetAddress host = InetAddress.getByName(ipaddress);
try {
return host.isReachable(3000);
} catch (IOException e) {
e.printStackTrace();
}
} catch (UnknownHostException e) {
e.printStackTrace();
}
return false;
}
public Boolean ping(String ipaddress) {
Runtime runtime = Runtime.getRuntime();
String cmds = "ping " + ipaddress;
System.out.println(cmds);
Process proc;
try {
proc = runtime.exec(cmds);
proc.getOutputStream().close();
InputStream inputstream = proc.getInputStream();
InputStreamReader inputstreamreader = new InputStreamReader(inputstream);
BufferedReader bufferedreader = new BufferedReader(inputstreamreader);
String line;
while ((line = bufferedreader.readLine()) != null) {
if (line.contains("Reply from " + ipaddress + ":")) {
return true;
}
}
} catch (IOException e) {
e.printStackTrace();
}
return false;
}
}
并使用以下代码
public static void main(String[] args) {
ArrayList<String> list = new ArrayList<String>();
MySQLConnect myConnection = new MySQLConnect();
myConnection.importData(list);
Ping ping = new Ping();
if (ping.ping(list.get(87)) {
System.out.prinln("Online / Host is reachable");
} else {
System.out.prinln("Offline /Host is unreachable");
}
}
但我建议使用ip地址ping比使用计算机名ping更好。