黑马程序员技术交流社区

标题: 用浏览器访问自己的客户端不出数据?求解释? [打印本页]

作者: 陈琦    时间: 2012-10-25 15:25
标题: 用浏览器访问自己的客户端不出数据?求解释?
本帖最后由 陈琦 于 2012-10-30 11:55 编辑
  1. <div class="blockcode"><blockquote>public class InterTest {
  2.         public static void main(String[] args) throws Exception {
  3.                 ServerSocket ss = new ServerSocket(8888);
  4.                 Socket s = ss.accept();
  5.                 InputStream in = s.getInputStream();
  6.                 int len = 0;
  7.                 byte b[] = new byte[1024];
  8.                 while((len=in.read(b))!=-1) {
  9.                         System.out.print(new String(b,0,len));
  10.                         //System.out.print(new String(b,0,b.length)); 另外这两句应该一样吧
  11.                 }
  12.                 OutputStream out = s.getOutputStream();
  13.                 PrintWriter pw = new PrintWriter(out,true);
  14.                 pw.println("<font size=\"20\" color=\"red\">你大爷</font>");
  15.                 pw.close();
  16.                 s.close();
  17.                 ss.close();
  18.         }
  19. }
复制代码

作者: hello_world!    时间: 2012-10-25 16:42


作者: 陈琦    时间: 2012-10-25 21:27
hello_world! 发表于 2012-10-25 16:42
  • public class InterTest {
  •         public static void main(String[] args) throws Exception {
    [* ...

  • 怎么修改呢???




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