我正在尝试从 ServerSocket 对象获取 Socket 的实例。但是,它总是打印
SocketTimeoutException = null
有我的代码:
try {
// We listen for new connections
Log.d("ShairPort", "Service >> In TRY ");
try {
servSock = new ServerSocket(port);
} catch (IOException e) {
Log.d("ShairPort", "Service >> In TRY # IO Exception = " +e.getMessage());
servSock = new ServerSocket();
}catch(Exception e) {
Log.d("ShairPort", "Service >> In TRY # E xception = " +e.getMessage());
}
// DNS Emitter (Bonjour)
byte[] hwAddr = getHardwareAdress();
emitter = new BonjourEmitter(name, getStringHardwareAdress(hwAddr), port);
//Setting Timeout
servSock.setSoTimeout(10000);
Log.d("ShairPort", "Service >> stopThread = " +stopThread);
while (!stopThread) {
try {
//********** This is throwing Exception ***************//
Socket socket = servSock.accept();
servSock.setReuseAddress(true);
Log.d("ShairPort", "Service >> got connection from " + socket.toString());
new RTSPResponder(hwAddr, socket).start();
} catch(SocketTimeoutException e) {
e.printStackTrace();
Log.d("ShairPort", "Service >> SocketTimeoutException = " + e.getMessage());
//********* here I am getting exception **************//
}catch(Exception e) {
Log.d("ShairPort", "Service >> Exception = " + e.getMessage());
servSock.close();
}
}
} catch (IOException e) {
Log.d("ShairPort", "Service >> TRY # CATCH IOException = " + e.getMessage());
throw new RuntimeException(e);
}
如果我做错了什么,请告诉我,以便我可以解决此问题。
02-06 18:14:08.300: W/System.err(2245): java.net.SocketTimeoutException
02-06 18:14:08.300: W/System.err(2245): at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:108)
02-06 18:14:08.300: W/System.err(2245): at java.net.ServerSocket.implAccept(ServerSocket.java:203)
02-06 18:14:08.310: W/System.err(2245): at java.net.ServerSocket.accept(ServerSocket.java:128)
02-06 18:14:08.310: W/System.err(2245): at vavi.apps.shairport.LaunchThread.run(LaunchThread.java:99)
02-06 18:14:08.310: W/System.err(2245): Caused by: libcore.io.ErrnoException: accept failed: EAGAIN (Try again)
02-06 18:14:08.320: W/System.err(2245): at libcore.io.Posix.accept(Native Method)
02-06 18:14:08.320: W/System.err(2245): at libcore.io.BlockGuardOs.accept(BlockGuardOs.java:55)
02-06 18:14:08.320: W/System.err(2245): at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:98)
02-06 18:14:08.320: W/System.err(2245): ... 3 more