業務場景:如今有一個socket服務端給咱們發送數據,咱們須要創建一個socket Client來鏈接這個socket Server,而後接受server發送過來的數據。可是這個server可能會中斷,因此在Client要有一個while死循環去時刻保持與Server的鏈接。java
package com.thinkgem.wlw.modules.test.socketdemo;
import java.io.*;
import java.net.Socket;
/**
* @Author zhouhe
* @Date 2019/10/14 17:41
*/
public class Client extends Thread{
//定義一個Socket對象
Socket socket = null;
private static String host = "192.168.0.109";
private static int port = 777;
public Client() {
try {
//須要服務器的IP地址和端口號,才能得到正確的Socket對象
socket = new Socket(host, port);
} catch (Exception e) {
}
}
@Override
public void run() {
//客戶端一鏈接就能夠寫數據個服務器了
super.run();
try {
// 讀Sock裏面的數據
InputStream s = socket.getInputStream();
byte[] buf = new byte[1024];
int len = 0;
while ((len = s.read(buf)) != -1) {
System.out.println(new String(buf, 0, len));
}
} catch (Exception e) {
System.out.println("socket鏈接斷開!");
}
}
//函數入口
public static void main(String[] args) {
//須要服務器的正確的IP地址和端口號
while (true){
Client clientTest = new Client();
clientTest.start();
}
}
}
這裏若是找不到socket Server,會報錯,一旦找到socket Server,就會自動鏈接,而且接受server發送過來的數據服務器