黑马程序员技术交流社区

标题: 服务器 客户端交换问题? [打印本页]

作者: 霍振鹏    时间: 2014-3-29 19:45
标题: 服务器 客户端交换问题?
本帖最后由 霍振鹏 于 2014-3-29 23:04 编辑

毕老师的视频,一块讲到将表单中的数据提交给服务器,可是我的服务器为什么收不到?
服务端代码
  1. package gg.dao;

  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.io.OutputStream;
  5. import java.net.ServerSocket;
  6. import java.net.Socket;

  7. public class ServerSocketDemo {

  8.         /**
  9.          * @param args
  10.          * @throws IOException
  11.          */
  12.         public static void main(String[] args) throws IOException {
  13.                 // TODO Auto-generated method stub
  14.                 ServerSocket ss=new ServerSocket(9090);
  15.                 Socket s=ss.accept();
  16.                 InputStream is=s.getInputStream();
  17.                 byte[] b=new byte[1024];
  18.                
  19.                 while((is.read(b))!=-1)
  20.                 {
  21.                         System.out.println(new String(b,0,b.length));
  22.                 }
  23.                
  24.                 is.close();
  25.                

  26.         }

  27. }
复制代码


客户端的表单中form是这么写的   <form action="http://127.0.0.1:9090" method="get">




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2