Danh mục

Lập trình Socket với Java

Số trang: 6      Loại file: pdf      Dung lượng: 149.17 KB      Lượt xem: 1      Lượt tải: 0    
thaipvcb

Xem trước 2 trang đầu tiên của tài liệu này:

Thông tin tài liệu:

Truyền tin với giao thức UDPDatagram Sockets Ví dụ về máy chủ/khách UDP...
Nội dung trích xuất từ tài liệu:
Lập trình Socket với Java 12/6/2007 Nội dung bài học Lớp InetAddress Lập trình Socket với Java Truyền tin với giao thức TCP TCP Sockets Ví dụ về máy chủ/khách TCP Truyền tin với giao thức UDP Datagram Sockets Ví dụ về máy chủ/khách UDP 1 2 Network Programming Network ProgrammingCác classes trong gói java.net Exceptions in Java Gói java.net chứa các classes cho phép thực hiện lập trình BindException mạng ConnectException ContentHandler DatagramPacket MalformedURLException DatagramSocket InetAddress NoRouteToHostException MulticastSocket ServerSocket ProtocolException Socket SocketImpl SocketException URL URLConnection UnknownHostException URLEncoder UnknownServiceException URLStreamHandler 3 4 Network Programming Network ProgrammingLớp InetAddress import java.net.*; import java.io.*; Xử lý địa chỉ Internet theo tên và địa chỉ IP public class IPFinder { Các hàm chuyển đổi tên/địa chỉ: public static void main(String[] args) throws IOException /* trả về một đối tượng kiểu InetAddress*/ { String host; public static InetAddress getByName(String host) throws BufferedReader input = UnknownHostException new BufferedReader( /* trả về chuỗi đối tượng kiểu InetAddress*/ new InputStreamReader(System.in)); public static InetAddress[] getAllByName(String host) throws System.out.print(\n\nEnter host name: ); UnknownHostException host = input.readLine(); /* c chu i ký t nh p t bàn phím*/ public static InetAddress getLocalHost() throws UnknownHostException try { public boolean isMulticastAddress() InetAddress address = InetAddress.getByName(host); public String getHostName() /*trả về tên miền*/ System.out.println(IP address: + address.toString()); } public byte[] getAddress() /*trả về địa chỉ IP dạng chuỗi byte*/ catch (UnknownHostException e) public String getHostAddress() /*trả về địa chỉ IP dạng ký tự*/ { public int hashCode() System.out.println(Could not find + host); } public boolean equals(Object obj) } public String toString() } 5 6 Network Programming Network Programming 1 ...

Tài liệu được xem nhiều: