会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
spring学习笔记
java例程练习(网络编程[简单网络连接试验])
import java.net.*; import java.io.*; public class TestTCPServer { public static void main(String[] args) { try { ServerSocket ss = new ServerSocket(6666);//阻塞式的 while(true) { //未经行异常处理! // Socket s = ss.accept(); // DataInputStream dis = // new DataInputStream(s.getInputStream()); // System.out.println(dis.readUTF());//也是阻塞式的 // dis.close(); // s.close(); Socket s1 = ss.accept(); OutputStream os = s1.getOutputStream(); DataOutputStream dos = new DataOutputStream(os); dos.writeUTF("Hello," + s1.getInetAddress() + "port#" + s1.getPort()+ " bye-bye!"); dos.close(); s1.close(); } } catch (IOException e) { e.printStackTrace(); System.out.println("程序运行出错: " + e); } } }
import java.net.*; import java.io.*; public class TestTCPClient { public static void main(String[] args) { try { Socket s = new Socket("127.0.0.1", 6666); //未经行异常处理! // OutputStream os = s.getOutputStream(); // DataOutputStream dos = new DataOutputStream(os); // // Thread.sleep(3000); // dos.writeUTF("Hello Server!"); // dos.flush(); // dos.close(); // s.close(); InputStream is = s.getInputStream(); DataInputStream dis = new DataInputStream(is); System.out.println(dis.readUTF()); dis.close(); s.close(); } catch (UnknownHostException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } }
posted on
2012-05-06 12:46
spring学习笔记
阅读(
182
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
博客园
首页
联系
订阅
管理
公告