如果我尝试将服务器中的Integer值传递回客户端并在屏幕上显示值,则下面显示的代码有效。虽然当我将值类型更改为Double时,它会在线程" main"中抛出错误异常。客户端类中的以下行中的java.util.NoSuchElementException : result = sc1.nextDouble();
class Client {
public static void main(String args[]) throws IOException {
int operation;
Double amount;
Double result;
Scanner sc = new Scanner(System.in);
Scanner sc2 = new Scanner(System.in);
Socket s = new Socket ("127.0.0.1",1234);
Scanner sc1 = new Scanner (s.getInputStream());
System.out.println("1. EUR → GBP");
System.out.println("2. EUR → USD");
System.out.println("3. EUR → MKD");
System.out.println("\n");
System.out.println("Chose operation :");
operation = sc.nextInt();
System.out.println("Amount :");
amount=sc2.nextDouble();
PrintStream p = new PrintStream(s.getOutputStream());
p.println(amount);
p.println(operation);
result = sc1.nextDouble();
System.out.println(result);
}
}
__
class Server {
public static void main(String args[]) throws IOException {
int operation;
Double amount;
Double result = 1.00;
ServerSocket s1 = new ServerSocket(1234);
Socket ss = s1.accept();
Scanner sc = new Scanner(ss.getInputStream());
amount = sc.nextDouble();
operation = sc.nextInt();
if(operation == 1) //EUR-GBP
{
result = amount * 0.78;
}
if(operation == 2) //EUR-USD
{
result = amount* 1.13;
}
if(operation == 3) //EUR-MKD
{
result = amount* 61.18;
}
PrintStream p = new PrintStream(ss.getOutputStream());
p.println(result);
} }
答案 0 :(得分:0)
我检查了你的程序,它可以正常工作,输入双倍和整数。