免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2678 | 回复: 6
打印 上一主题 下一主题

请教eclipse编写一个ServerSocket实现向客户端输出数据流运行后没有输出 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-05 01:44 |只看该作者 |倒序浏览
附原代码,百思不得其解,是否eclispe中编写网络程序输出内容不在本地控制台显示.
import java.io.*;
import java.net.*;

public class SocketTest1 {

        public static void main(String[] args) throws IOException {
       
        server();
       
        }
       
        public static void server() throws IOException
        {
                  ServerSocket sso=new ServerSocket(5000);
                  Socket so=sso.accept();
                  OutputStream os=so.getOutputStream();
                  os.write("hello".getBytes());
                  InputStream is=so.getInputStream();
                  byte[] input=new byte[100];
                  int len=is.read(input);
                  System.out.println(new String(input,0,len));   
                  
                  
                  
                  is.close();
                  os.close();
                  so.close();
                  sso.close();
                  
                  
                  
         }
}

论坛徽章:
0
2 [报告]
发表于 2006-07-05 07:41 |只看该作者
你读到东西了吗?
如果怀疑是否能输出到本地,写死输出一个字符串试试就好了

论坛徽章:
0
3 [报告]
发表于 2006-07-05 08:53 |只看该作者

回复 1楼 liutao_eagle 的帖子

os.write();
os.flush();

不知道你client怎么写的。估计没有flush吧?

论坛徽章:
0
4 [报告]
发表于 2006-07-05 09:04 |只看该作者
楼主,你只用os.write(...),而没有flush,客户端是不会接受到发送的内容的。
然后你又在is.read()了,这个操作是阻塞的,直到有了输入才会往下执行。

这样,客户端等服务器发送,服务器又等客户端发送。进入了像线程争夺资源一样的“死锁”

论坛徽章:
0
5 [报告]
发表于 2006-07-05 11:04 |只看该作者
lz用的是不带缓冲的流吧?需要fflush吗?

论坛徽章:
0
6 [报告]
发表于 2006-07-06 08:37 |只看该作者

回复 4楼 jakieyoung 的帖子

我写的是不带buffer的数据流因此不用flush.
附完整的代码,实现服务器和客户端发送接收数据流
import java.io.*;
import java.net.*;

public class SocketTest {

        public static void main(String[] args) throws IOException {
       
        server();
        client();
        }
       
        /*服务器端的程序*/
                 public static void server() throws IOException
        {
                  ServerSocket sso=new ServerSocket(6000);
                  Socket so=sso.accept();
                  OutputStream os=so.getOutputStream();
                  os.write("hello".getBytes());
                  InputStream is=so.getInputStream();
                  byte[] input=new byte[100];
                  int len=is.read(input);
                  System.out.println(new String(input,0,len));   
                  
                  
                  
                  is.close();
                  os.close();
                  so.close();
                  sso.close();
                  
                  
                  
         }
         
         /*客户端程序*/
         public static void client() throws UnknownHostException, IOException
         {
           Socket clientSo=new Socket(InetAddress.getByName(null),6000);
           InputStream is=clientSo.getInputStream();
           byte[] buff=new byte[100];
           int len=is.read(buff);
           System.out.println(new String(buff,0,len));
           OutputStream os=clientSo.getOutputStream();
           os.write("hello,i am liutao".getBytes());
          
           os.close();
           is.close();
           clientSo.close();
          
          
         }

}

论坛徽章:
0
7 [报告]
发表于 2006-07-06 10:10 |只看该作者
....你的server和client放在不同的地方执行吧
这样你的server阻塞,client永远也不会执行的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP