java--socket编程,报错为 java.net.SocketInputStream.read(Unknown Source),怎么回事啊?

服务器代码:publicclassServer{publicstaticvoidmain(Stringargs[]){ServerSocketserver=null;So... 服务器代码:public class Server {
public static void main(String args []){
ServerSocket server=null;
Socket client=null;
System.out.println("2号位置");
while(true){
try {
server=new ServerSocket(2014);
System.out.println("1号位置");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
client=server.accept();
System.out.println("3号位置");
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if(client!=null){
new ServerThread(client).start();
System.out.println("4号位置");
}
try {
server.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

}

class ServerThread extends Thread{
Socket socket;
DataOutputStream out=null;
DataInputStream in=null;
String s;
ServerThread(Socket s){
socket=s;
try {
out=new DataOutputStream(socket.getOutputStream());
in=new DataInputStream(socket.getInputStream());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void run(){
while(true){
try {
double r=in.readDouble(); //就是这一行报的错
double area=Math.PI*r*r;
out.writeDouble(area);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
重新运行一次后,报错的位置又变了
展开
 我来答
微爛
推荐于2016-06-09 · 超过48用户采纳过TA的回答
知道小有建树答主
回答量:173
采纳率:0%
帮助的人:100万
展开全部
public class Server {
public static void main(String args []){
ServerSocket server=null;
Socket client=null;
System.out.println("2号位置");
while(true){
try {
//你在这里new serverSocket也就是说每次有客户端连接都会申请新的端口2014;
//你试过有两个客户端连接的时候会不会报错?
server=new ServerSocket(2014);
System.out.println("1号位置");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
client=server.accept();
System.out.println("3号位置");
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if(client!=null){
new ServerThread(client).start();
System.out.println("4号位置");
}
try {
server.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

}

class ServerThread extends Thread{
Socket socket;
DataOutputStream out=null;
DataInputStream in=null;
String s;
ServerThread(Socket s){
socket=s;
try {
out=new DataOutputStream(socket.getOutputStream());
in=new DataInputStream(socket.getInputStream());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void run(){
while(true){
try {
//这里是个死循环!!!终归是不科学的;
//你没有给出客户端的代码 所以也没办法知道具体应该怎么写;
double r=in.readDouble(); //就是这一行报的错
double area=Math.PI*r*r;
out.writeDouble(area);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
micro0369
2014-05-21 · TA获得超过1.2万个赞
知道大有可为答主
回答量:9250
采纳率:85%
帮助的人:4054万
展开全部
在执行读之前,应该先判断是否有数据可读吧?!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式