62,623
社区成员
发帖
与我相关
我的任务
分享
DataOutputStream out = new DataOutputStream(s.getOutputStream());
Date now = new Date();
out.writeUTF(now.toString());
out.close();
try{
InputStream in = sock.getInputStream();
String src;
src = in.readUTF();
}
catch (IOException IOe) {
showRst.setText("与服务器连接断开");
break;
}