JAVA網路程式設計(2)TCP程式設計

程式小達人發表於2020-12-15

2.1 需求描述

功能描述:實現類似QQ、微信、郵箱的網路登入功能,可以多個使用者同時登入。為了便於理解,進行功能分解迭代、分為一次單向通訊、一次雙向通訊、傳輸物件、引入多執行緒來分別實現。

  • 需要分別開發一個客戶端程式及一個伺服器程式
  • 伺服器需要處於開啟狀態
  • 伺服器需要在某個埠監聽客戶端請求
  • 客戶端訪問伺服器,必須知道伺服器的IP及埠

2.2 一次單項通訊

//伺服器端程式碼實現
public class LoginServer {

    public static void main(String[] args) throws IOException {
        //開啟服務,指定監聽埠
        ServerSocket socketServer = new ServerSocket(8080);
        //在等待的介面監聽
        Socket socket = socketServer.accept(); //等待客戶端連線,沒有連線程式在此阻塞
        //接收資料
        InputStream is = socket.getInputStream();
        DataInputStream dis = new DataInputStream(is);
        String s = dis.readUTF();
        System.out.println("使用者登入資訊:" + s);
        //關閉資源
        dis.close();
        //socket.close(); //不需要手動關閉
        socketServer.close(); //需要手動關閉
    }

}
//客戶端程式碼實現
public class LoginClient {

    public static void main(String[] args) throws IOException {
        //建立socket連線
        Socket socket = new Socket("127.0.0.1",8080);
        //傳送資料
        OutputStream os = socket.getOutputStream();
        DataOutputStream dos = new DataOutputStream(os);
        dos.writeUTF("username=fyy&password=123456");
        //關閉連線
        dos.close();
        //socket.close(); //不需要手動關閉
    }

}

2.3 一次雙向通訊

//伺服器端程式碼實現
public class LoginServer {

    public static void main(String[] args) throws IOException {
        //開啟服務,指定監聽埠
        ServerSocket socketServer = new ServerSocket(8080);
        //在等待的介面監聽
        Socket socket = socketServer.accept(); //等待客戶端連線,沒有連線程式在此阻塞
        DataInputStream dis = new DataInputStream(socket.getInputStream());
        DataOutputStream dos = new DataOutputStream(socket.getOutputStream());
        //接收資料
        String s = dis.readUTF();
        System.out.println("使用者登入資訊:" + s);
        //傳送資料
        dos.writeUTF("使用者登入成功!");
        //關閉資源
        dis.close();
        dos.close();
        //socket.close(); //不需要手動關閉
        socketServer.close(); //需要手動關閉
    }

}
//客戶端程式碼實現
public class LoginClient {

    public static void main(String[] args) throws IOException {
        //建立socket連線
        Socket socket = new Socket("127.0.0.1",8080);
        DataInputStream dis = new DataInputStream(socket.getInputStream());
        DataOutputStream dos = new DataOutputStream(socket.getOutputStream());
        //傳送資料
        dos.writeUTF("username=fyy&password=123456");
        String str = dis.readUTF();
        System.out.println("伺服器返回資料:" + str);
        //關閉連線
        dos.close();
        dis.close();
        //socket.close(); //不需要手動關閉
    }

}

2.4 一次雙向通訊,傳輸物件

//伺服器端程式碼實現
public class LoginServer {

    public static void main(String[] args) throws IOException, ClassNotFoundException {
        //開啟服務,指定監聽埠
        ServerSocket socketServer = new ServerSocket(8080);
        //在等待的介面監聽
        Socket socket = socketServer.accept(); //等待客戶端連線,沒有連線程式在此阻塞
		ObjectInputStream ois = new ObjectInputStream(socket.getInputStream());
        DataOutputStream dos = new DataOutputStream(socket.getOutputStream());
        //接收資料
        User user = (User) ois.readObject();
        System.out.println("使用者名稱:" + user.getUserId());
        System.out.println("密碼:" + user.getPassword());
        //響應請求
        if(user.getUserId().equals("admin") && user.getPassword().equals("123")){
            dos.writeUTF("使用者登入成功!");
        }else{
            dos.writeUTF("使用者名稱/密碼錯誤!");
        }
        //關閉資源
        ois.close();
        dos.close();
        //socket.close(); //不需要手動關閉
        socketServer.close(); //需要手動關閉
    }

}
//客戶端程式碼實現
public class LoginClient {

    public static void main(String[] args) throws IOException {
        //建立socket連線
        Socket socket = new Socket("127.0.0.1",8080);
        DataInputStream dis = new DataInputStream(socket.getInputStream());
        ObjectOutputStream oos = new ObjectOutputStream(socket.getOutputStream());
        //獲取鍵盤輸入,封裝成User物件
        Scanner input = new Scanner(System.in);
        System.out.println("請輸入使用者名稱:");
        String userId = input.next();
        System.out.println("請輸入密碼:");
        String password = input.next();
        User user = new User(userId,password);
        //傳送資料
        oos.writeObject(user);
        //獲取返回資料
        String str = dis.readUTF();
        System.out.println("伺服器返回資料:" + str);
        //關閉連線
        oos.close();
        dis.close();
        //socket.close(); //不需要手動關閉
    }

}
//封裝的User物件
public class User implements Serializable {
    
    private String userId;
    private String password;

    public User(){

    }

    public User(String userId,String password){
        this.userId = userId;
        this.password = password;
    }

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    @Override
    public String toString() {
        return "User{" +
                "userId='" + userId + '\'' +
                ", password='" + password + '\'' +
                '}';
    }
}

2.5 TCP檔案上傳

//伺服器端編碼實現
public class UpServer {

    public static void main(String[] args) throws IOException {
        ServerSocket socketServer = new ServerSocket(8088);
        Socket socket = socketServer.accept();
        String dFilePath = "F:\\test2.txt";
        try ( //建立檔案輸入輸出流
              BufferedInputStream bis = new BufferedInputStream(socket.getInputStream());
              BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(dFilePath));
        ){
            //讀取檔案
            byte[] buf = new byte[1024];
            int len;
            while ((len = bis.read(buf)) != -1){
                bos.write(buf,0,len);
            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }

}
//客戶端編碼實現
public class UpClient {

    public static void main(String[] args) throws IOException {
        String sFilePath = "F:\\test.txt";
        Socket socket = new Socket("127.0.0.1",8088);
        try ( //建立檔案輸入輸出流
              BufferedInputStream bis = new BufferedInputStream(new FileInputStream(sFilePath));
              BufferedOutputStream bos = new BufferedOutputStream(socket.getOutputStream());
        ){
            //讀取檔案
            byte[] buf = new byte[1024];
            int len;
            while ((len = bis.read(buf)) != -1){
                bos.write(buf,0,len);
            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }

}

相關文章