| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 649 人关注过本帖
标题:socket应用
取消只看楼主 加入收藏
oujianqiang
Rank: 1
等 级:新手上路
帖 子:138
专家分:0
注 册:2006-5-16
收藏
 问题点数:0 回复次数: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 应用 
2006-09-12 15:22
快速回复:socket应用
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034958 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved