使用TCP協議實現客戶端和服務器數據傳輸

/*客戶端和服務端互訪,傳輸字節流*/ import java.net.*; import java.io.*; class TCPClient2 { public static void main(String[] args) throws Exception { Socket s=new Socket ("192.168.191.1",10004); OutputStrea
相關文章
相關標籤/搜索