这是客户端的代码,用的是URLConnectionURL url = new URL("http://192.168.1.6:10006");URLConnection conn = url.openConnection();InputStream in = conn.getInputStream();int len =0;byte[] buf= new byte[1024];while((len=in.read(buf))!=-1){System.out.println(new String(buf,0,len));}
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |