Java Doc for CharGenUDPClient.java in  » Net » Apache-commons-net-1.4.1 » org » apache » commons » net » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » Apache commons net 1.4.1 » org.apache.commons.net 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.net.DatagramSocketClient
      org.apache.commons.net.CharGenUDPClient

CharGenUDPClient
final public class CharGenUDPClient extends DatagramSocketClient (Code)
The CharGenUDPClient class is a UDP implementation of a client for the character generator protocol described in RFC 864. It can also be used for Systat (RFC 866), Quote of the Day (RFC 865), and netstat (port 15). All of these protocols involve sending a datagram to the appropriate port, and reading data contained in one or more reply datagrams. The chargen and quote of the day protocols only send one reply datagram containing 512 bytes or less of data. The other protocols may reply with more than one datagram, in which case you must wait for a timeout to determine that all reply datagrams have been sent.

To use the CharGenUDPClient class, just open a local UDP port with org.apache.commons.net.DatagramSocketClient.open open and call CharGenUDPClient.send send to send the datagram that will initiate the data reply. For chargen or quote of the day, just call CharGenUDPClient.receive receive , and you're done. For netstat and systat, call receive in a while loop, and catch a SocketException and InterruptedIOException to detect a timeout (don't forget to set the timeout duration beforehand). Don't forget to call org.apache.commons.net.DatagramSocketClient.close close() to clean up properly.


author:
   Daniel F. Savarese
See Also:   CharGenTCPClient



Field Summary
final public static  intCHARGEN_PORT
     The character generator port value of 19 according to RFC 864.
final public static  intDEFAULT_PORT
     The default chargen port.
final public static  intNETSTAT_PORT
     The netstat port value of 19.
final public static  intQUOTE_OF_DAY_PORT
     The quote of the day port value of 17 according to RFC 865.
final public static  intSYSTAT_PORT
     The systat port value of 11 according to RFC 866.

Constructor Summary
public  CharGenUDPClient()
     The default CharGenUDPClient constructor.

Method Summary
public  byte[]receive()
     Receive the reply data from the server.
public  voidsend(InetAddress host, int port)
     Sends the data initiation datagram.
public  voidsend(InetAddress host)
    

Field Detail
CHARGEN_PORT
final public static int CHARGEN_PORT(Code)
The character generator port value of 19 according to RFC 864. **



DEFAULT_PORT
final public static int DEFAULT_PORT(Code)
The default chargen port. It is set to 19 according to RFC 864. **



NETSTAT_PORT
final public static int NETSTAT_PORT(Code)
The netstat port value of 19. **



QUOTE_OF_DAY_PORT
final public static int QUOTE_OF_DAY_PORT(Code)
The quote of the day port value of 17 according to RFC 865. **



SYSTAT_PORT
final public static int SYSTAT_PORT(Code)
The systat port value of 11 according to RFC 866. **




Constructor Detail
CharGenUDPClient
public CharGenUDPClient()(Code)
The default CharGenUDPClient constructor. It initializes some internal data structures for sending and receiving the necessary datagrams for the chargen and related protocols.




Method Detail
receive
public byte[] receive() throws IOException(Code)
Receive the reply data from the server. This will always be 512 bytes or less. Chargen and quote of the day only return one packet. Netstat and systat require multiple calls to receive() with timeout detection.

The reply data from the server.
exception:
  IOException - If an error occurs while receiving the datagram.




send
public void send(InetAddress host, int port) throws IOException(Code)
Sends the data initiation datagram. This data in the packet is ignored by the server, and merely serves to signal that the server should send its reply.


Parameters:
  host - The address of the server.
Parameters:
  port - The port of the service.
exception:
  IOException - If an error occurs while sending the datagram.




send
public void send(InetAddress host) throws IOException(Code)
Same as send(host, CharGenUDPClient.DEFAULT_PORT); **



Fields inherited from org.apache.commons.net.DatagramSocketClient
protected boolean _isOpen_(Code)(Java Doc)
protected DatagramSocketFactory _socketFactory_(Code)(Java Doc)
protected DatagramSocket _socket_(Code)(Java Doc)
protected int _timeout_(Code)(Java Doc)

Methods inherited from org.apache.commons.net.DatagramSocketClient
public void close()(Code)(Java Doc)
public int getDefaultTimeout()(Code)(Java Doc)
public InetAddress getLocalAddress()(Code)(Java Doc)
public int getLocalPort()(Code)(Java Doc)
public int getSoTimeout() throws SocketException(Code)(Java Doc)
public boolean isOpen()(Code)(Java Doc)
public void open() throws SocketException(Code)(Java Doc)
public void open(int port) throws SocketException(Code)(Java Doc)
public void open(int port, InetAddress laddr) throws SocketException(Code)(Java Doc)
public void setDatagramSocketFactory(DatagramSocketFactory factory)(Code)(Java Doc)
public void setDefaultTimeout(int timeout)(Code)(Java Doc)
public void setSoTimeout(int timeout) throws SocketException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.