快速业务通道

Java网络编程基础(二) Socket类的使用方法 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-22
rver.    pw.println ("DATE");    // Obtain and print the current date/time.    System.out.println (br.readLine ());    // Send the PAUSE command to the server. This allows several    // clients to start and verifies that the server is spawning    // multiple threads.    pw.println ("PAUSE");   // Send the DOW command to the server.    pw.println ("DOW");    // Obtain and print the current day of week.    System.out.println (br.readLine ());    // Send the DOM command to the server.    pw.println ("DOM");    // Obtain and print the current day of month.    System.out.println (br.readLine ());    // Send the DOY command to the server.    pw.println ("DOY");    // Obtain and print the current day of year.    System.out.println (br.readLine ());   }   catch (IOException e)   {    System.out.println (e.toString ());   }   finally   {    try    {     if (br != null)      br.close ();     if (pw != null)      pw.close ();     if (s != null)      s.close ();    }    catch (IOException e)    {     }    }  } }

Java网络编程基础(二) Socket类的使用方法(2)

时间:2010-12-15

运行这段程序将会得到下面的结果:

Tue Jan 29 18:11:51 CST 2002

TUESDAY

29

29

SSClient创建了一个Socket对象与运行在主机端口10000的服务程序联系,主机的IP地址由host变量确定。SSClient将获得Socket的输入输出流,围绕BufferedReader的输入流和PrintWriter的输出流对字符串进行读写操作就变得非常容易,SSClient个服务程序发出各种date/time命令并得到响应,每个响应均被打印,一旦最后一个响应被打印,将执行Try/Catch/Finally结构的Finally子串,Finally子串将在关闭Socket之前关闭BufferedReader 和 PrintWriter。

在SSClient源代码编译完成后,可以输入java SSClient 来执行这段程序,如果有合适的程序运行在不同的主机上,采用主机名/IP地址为参数的输入方式,比如www.sina.com.cn是运行服务器程序的主机,那么输入方式就是java SSClient www.sina.com.cn。

技巧

Socket类包含了许多有用的方法。比如getLocalAddress()将返回一个包含客户程序IP地址的InetAddress子类对象的引用;getLocalPort()将返回客户程序的端口号;getInetAddress()将返回一个包含服务器IP地址的InetAddress子类对象的引用;getPort()将返回服务程序的端口号。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号