我正在尝试使用TCP协议从我的Android设备连接到Linux PC。 两个设备都在同一网络上。
当我在同一网络上的其他PC上使用这样的简单java代码时,它可以工作,我得到一个输出
class Server {
public static void main ( String[] args ) throws IOException
{
String hostname = "MY_COMPUTER_NAME";
try
{
InetAddress ipaddress = InetAddress.getByName(hostname);
System.out.println("IP address: " + ipaddress.getHostAddress());
}
catch ( UnknownHostException e )
{
System.out.println("Could not find IP address for: " + hostname);
}
}
}
输出:
IP address: 192.168.1.3
当我使用此代码连接到我的Android手机上的套接字时,它只是不起作用。处理程序还会更新另一个TextView以进行调试。当我用我在路由器设置上看到的实际IP替换MY_COMPUTER_NAME时,一切正常,套接字已创建并且TextView已更新。
//Some variables
String hostname = "MY_COMPUTER_NAME";
private static final int SERVERPORT = 5001;
InetAddress ipaddress = null;
String address = null;
@Override
public void run() {
while(true){
try {
ipaddress = InetAddress.getByName(hostname);
address = ipaddress.getHostAddress();
socket = new Socket(ipaddress, SERVERPORT);
myHandler.post(updateRunnable);
break;
} catch (UnknownHostException e1) {
e1.printStackTrace();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
可能是什么问题,我错过了什么?感谢。