当前位置: 代码迷 >> Java相关 >> socket应用
  详细解决方案

socket应用

热度:411   发布时间:2006-09-12 15:22:03.0
socket应用

大家帮忙一下,为什么下面两个程序间不能传送字符串
服务器端
import java.io.*;
import java.net.*;

public class socketserverTest
{
public static void main(String args[])
{
send();
}

public static void send()
{
try{
ServerSocket sersocket=new ServerSocket(4567);
Socket socket=sersocket.accept();
System.out.println("link");
BufferedReader br=new BufferedReader(new InputStreamReader(socket.getInputStream()));
PrintWriter pr=new PrintWriter(new OutputStreamWriter(socket.getOutputStream()));

String str=br.readLine();
System.out.println(str);
pr.write("recvice");
br.close();
pr.close();
sersocket.close();
}
catch(IOException ioe){System.err.println(ioe);}

}
}


下面是客户端
import java.io.*;
import java.net.*;

public class socketTest
{
public static void main(String args[])
{
send();
}

public static void send()
{
try{
Socket socket=new Socket(InetAddress.getLocalHost(),4567);
BufferedReader br=new BufferedReader(new InputStreamReader(socket.getInputStream()));
PrintWriter wt=new PrintWriter(new OutputStreamWriter(socket.getOutputStream()));

System.out.println("send");
wt.print("send");
System.out.println(br.readLine());
br.close();
wt.close();
socket.close();
}
catch(UnknownHostException hoste){System.err.println(hoste);}
catch(IOException ioe){System.err.println(ioe);}
finally
{ }
}
}

搜索更多相关的解决方案: socket  应用  

----------------解决方案--------------------------------------------------------
你那边读是读一行,可是你这边写却不是写一行,当然会读不出啊,还有,最好是写完以后再flush一下,可以保证你的流里面的内容被刷出去了
你客户端应该wt.println("send")注意不是wt.print("send")
然后wt.flush().这个就可以收到了,
----------------解决方案--------------------------------------------------------
服务器是不是应该一直开着阿
你服务器关闭就不能接收数据了


----------------解决方案--------------------------------------------------------
回复:(qq8532)服务器是不是应该一直开着阿你服务器...

我前两天才开始接触java,找些教程看啦,也用了类似的例子
在本机端口之间通信就可以
但是和网络上其他主机通信就不行了……
怎么样才能和网络上的主机通信呢?


----------------解决方案--------------------------------------------------------
好像是一样的吧,只要没开防火墙,把ip地址和端口号换一换就可以了。。。。。
----------------解决方案--------------------------------------------------------
  相关解决方案