久久亚洲中文字幕精_精品国产一区二区三区不卡_99久久久无码国产精品免费手机_国产亚洲精品久久久久动漫

將想法與焦點(diǎn)和您一起共享

Java網(wǎng)絡(luò)編程基礎(chǔ)(四) ServerSocket類使用發(fā)布者:本站     時間:2020-05-06 16:05:46

由于SSClient使用了流套接字,所以服務(wù)程序也要使用流套接字。

這就要創(chuàng)建一個ServerSocket對象,ServerSocket有幾個構(gòu)造函數(shù),最簡單的是ServerSocket(int port),當(dāng)使用ServerSocket(int port)創(chuàng)建一個ServerSocket對象,port參數(shù)傳遞端口號,這個端口就是服務(wù)器監(jiān)聽連接請求的端口,如果在這時出現(xiàn)錯誤將拋出IOException異常對象,否則將創(chuàng)建ServerSocket對象并開始準(zhǔn)備接收連接請求。

接下來服務(wù)程序進(jìn)入無限循環(huán)之中,無限循環(huán)從調(diào)用ServerSocket的accept()方法開始,在調(diào)用開始后accept()方法將導(dǎo)致調(diào)用線程阻塞直到連接建立。在建立連接后accept()返回一個最近創(chuàng)建的Socket對象,該Socket對象綁定了客戶程序的IP地址或端口號。

由于存在單個服務(wù)程序與多個客戶程序通訊的可能,所以服務(wù)程序響應(yīng)客戶程序不應(yīng)該花很多時間,否則客戶程序在得到服務(wù)前有可能花很多時間來等待通訊的建立,然而服務(wù)程序和客戶程序的會話有可能是很長的(這與電話類似),因此為加快對客戶程序連接請求的響應(yīng),典型的方法是服務(wù)器主機(jī)運(yùn)行一個后臺線程,這個后臺線程處理服務(wù)程序和客戶程序的通訊。

為了示范我們在上面談到的慨念并完成SSClient程序,下面我們創(chuàng)建一個SSServer程序,程序?qū)?chuàng)建一個ServerSocket對象來監(jiān)聽端口10000的連接請求,如果成功服務(wù)程序?qū)⒌却B接輸入,開始一個線程處理連接,并響應(yīng)來自客戶程序的命令。下面就是這段程序的代碼:

Listing 3: SSServer.java


// SSServer.java

import java.io.*;
import java.net.*;
import java.util.*;

class SSServer
{
public static void main (String [] args) throws IOException
{
System.out.println ("Server starting...\n");

// Create a server socket that listens for incoming connection
// requests on port 10000.

ServerSocket server = new ServerSocket (10000);

while (true)
{
// Listen for incoming connection requests from client
// programs, establish a connection, and return a Socket
// object that redivsents this connection.

Socket s = server.accept ();

System.out.println ("Accepting Connection...\n");

// Start a thread to handle the connection.

new ServerThread (s).start ();
}
}
}

class ServerThread extends Thread
{
private Socket s;

ServerThread (Socket s)
{
this.s = s;
}

public void run ()
{
BufferedReader br = null;
PrintWriter pw = null;

try
{
// Create an input stream reader that chains to the socket's
// byte-oriented input stream. The input stream reader
// converts bytes read from the socket to characters. The
// conversion is based on the platform's default character
// set.

InputStreamReader isr;
isr = new InputStreamReader (s.getInputStream ());

// Create a buffered reader that chains to the input stream
// reader. The buffered reader supplies a convenient method
// for reading entire lines of text.

br = new BufferedReader (isr);

// Create a print writer that chains to the socket's byte-
// oriented output stream. The print writer creates an
// intermediate output stream writer that converts
// characters sent to the socket to bytes. The conversion
// is based on the platform's default character set.

pw = new PrintWriter (s.getOutputStream (), true);

// Create a calendar that makes it possible to obtain date
// and time information.

Calendar c = Calendar.getInstance ();

// Because the client program may send multiple commands, a
// loop is required. Keep looping until the client either
// explicitly requests termination by sending a command
// beginning with letters BYE or implicitly requests
// termination by closing its output stream.

do
{
// Obtain the client program's next command.

String cmd = br.readLine ();

// Exit if client program has closed its output stream.

if (cmd == null)
break;

// Convert command to uppercase, for ease of comparison.

cmd = cmd.toUpperCase ();

// If client program sends BYE command, terminate.

if (cmd.startsWith ("BYE"))
break;

// If client program sends DATE or TIME command, return
// current date/time to the client program.

if (cmd.startsWith ("DATE") || cmd.startsWith ("TIME"))
pw.println (c.getTime ().toString ());

// If client program sends DOM (Day Of Month) command,
// return current day of month to the client program.

if (cmd.startsWith ("DOM"))
pw.println ("" + c.get (Calendar.DAY_OF_MONTH));

// If client program sends DOW (Day Of Week) command



選擇我們,優(yōu)質(zhì)服務(wù),不容錯過
1. 優(yōu)秀的網(wǎng)絡(luò)資源,強(qiáng)大的網(wǎng)站優(yōu)化技術(shù),穩(wěn)定的網(wǎng)站和速度保證
2. 15年上海網(wǎng)站建設(shè)經(jīng)驗(yàn),優(yōu)秀的技術(shù)和設(shè)計水平,更放心
3. 全程省心服務(wù),不必?fù)?dān)心自己不懂網(wǎng)絡(luò),更省心。
------------------------------------------------------------
24小時聯(lián)系電話:021-58370032
若尔盖县| 阳城县| 龙胜| 安庆市| 九龙城区| 凤庆县| 井陉县| 页游| 绩溪县| 仪征市| 许昌市| 临泉县| 岳池县| 靖远县| 兴隆县| 轮台县| 崇仁县| 平塘县| 鸡东县| 株洲县| 安泽县| 广州市| 兴宁市| 澳门| 岳普湖县| 平昌县| 大埔县| 金阳县| 积石山| 阿图什市| 子洲县| 依安县| 湖口县| 屯留县| 十堰市| 大新县| 镇雄县| 凌海市| 桂平市| 双牌县| 比如县|