網路程式設計:字元流
//客戶端
public class cli
str =br.readline();
system.out.println("客戶說"+str);
system.out.println("請說話");
str = input.next();
bw.write(str);
bw.newline();
bw.flush();
}//3.掛**
bw.close();
br.close();
}//服務端
public class ser
system.out.println("請說話:");
string sr = input.next();
bw.write(sr);
bw.newline();
bw.flush();
str = br.readline();
system.out.println("客戶說:"+str);
}//第四步:掛**
bw.close();
br.close();
網路程式設計與執行緒:
public class writerthread extends thread
@override
public void run() catch (ioexception e) }}
}public class readerthread extends thread
/*把執行緒要做的事放到run方法裡面就可以了
* start的方法呼叫。
* */
@override
public void run()
} catch (ioexception e) }}
}基本內涵:
網路程式設計的意義在於使電腦之間進行資料共享
socket程式設計
一直以為serversocket accept之後客戶端才能發資訊,實驗後得出如下結論 1 serversocket沒有accept時,client是可以傳送資訊到server端的。2 serversocket accept之後,正在處理訊息時,client也是可以傳送資訊到server端。如果se...
Socket程式設計
對tcp ip udp socket程式設計這些詞你不會很陌生吧?隨著網路技術的發展,這些詞充斥著我們的耳朵。那麼我想問 1.什麼是tcp ip udp?2.socket在 呢?3.socket是什麼呢?4.你會使用它們嗎?什麼是tcp ip udp?tcp ip transmission cont...
socket程式設計
建立socket 建立乙個 socket,它可用於在基於 tcp ip 的網路 如 internet 上通訊。socket s new socket addressfamily.internetwork,sockettype.stream,protocoltype.tcp 若要使用 udp 而不是 ...