当前位置: 技术问答>java相关
请问socket方面的问题
来源: 互联网 发布时间:2015-08-21
本文导语: new Socket()的时候就出错,报Connetion Refused错, 太痛苦了。 谢谢。 public void connect() throws IOException{ byte[] value = null; InetAddress adr = InetAddress.getLocalHost(); System.out.println("a...
new Socket()的时候就出错,报Connetion Refused错,
太痛苦了。
谢谢。
public void connect() throws IOException{
byte[] value = null;
InetAddress adr = InetAddress.getLocalHost();
System.out.println("address:"+adr);
Socket socket = new Socket(adr,SocketServer.PORT);
try {
... //do sth.
}
catch (IOException ex) {
ex.printStackTrace();
}
}
太痛苦了。
谢谢。
public void connect() throws IOException{
byte[] value = null;
InetAddress adr = InetAddress.getLocalHost();
System.out.println("address:"+adr);
Socket socket = new Socket(adr,SocketServer.PORT);
try {
... //do sth.
}
catch (IOException ex) {
ex.printStackTrace();
}
}
|
to junnef(皮皮)
有getLocalAddress这个方法吗?
to 楼主
服务器启动了吗?
有getLocalAddress这个方法吗?
to 楼主
服务器启动了吗?