4

我正在编写一个带有客户端和服务器的小程序。服务器程序中包含计算器程序。当服务器和客户端运行时,客户端可以输入和方程式,例如。2 + 2,服务器将计算它并将答案发送给客户端。该程序还应该包含一个帮助选项,因此当命令帮助从客户端发送到服务器时,服务器应该返回一个帮助菜单。我的问题是它正在返回帮助菜单,但都在一行中,它没有在单独的行中将其打印到控制台。谢谢你的帮助。

服务器代码:

package One;

    import java.io.*;
    import java.net.*;


    public class ServerCalculator {

        static double answer;

        public ServerCalculator(){

            System.out.println("Server...");

            theServer();

            }
        void theServer(){

            try{

                ServerSocket ss = new ServerSocket(9990);
                while(true){

                    Socket sc = ss.accept();
                    Help hp = new Help();
                    BufferedReader br = new BufferedReader(new InputStreamReader(sc.getInputStream()));
                    String compute = br.readLine();

                    Maths(compute);
                    PrintWriter pw = new PrintWriter(sc.getOutputStream());

                    if(compute.equals("help")){
    //                  pw.println(hp.noOfLines());
                        pw.println(hp.menu());
                    }

                    if(compute.equals("exit")){
                        ss.close();
                    }

                    else{
                        pw.println(answer); 
                    }

                    pw.flush();
                }

            }

            catch (Exception ee){
                ee.printStackTrace();
            }

        }

        static double Maths(String compute){

          String message[] = compute.split(" ");


          if(message[0].equalsIgnoreCase("Help"))
          {
              return -2;
          }

          if(message[0].equalsIgnoreCase("Exit"))
          {
              return -1;
          }


          double rad = 0;

          double a = Integer.parseInt(message[0]);
          double b = Integer.parseInt(message[2]);

          if(message[1].equalsIgnoreCase("Sin")){
                rad = Math.toRadians(a);
                answer = Math.sin(rad);
            }
            if(message[1].equalsIgnoreCase("Cos")){
                if(a==90 || a==270){
                    answer = 0;
                }
                else{
                    rad = Math.toRadians(a);
                    answer = Math.cos(rad);
                }
            }
            if(message[1].equalsIgnoreCase("Tan")){
                if(a==90 || a==270){
                    System.out.println("Invalid Calculation");
                    answer =  0;
                }
                else if(a==45 || a==135){
                    rad = Math.toRadians(a);
                    answer = Math.tan(rad);
                }
                rad = Math.toRadians(a);
                answer = Math.tan(rad);
            }
        if(message[1].equalsIgnoreCase("Power") || (message[1].equalsIgnoreCase("^")))
        {
            answer = Math.pow(a, b);  
        }

          if(message[1].equalsIgnoreCase("Multiply") || (message[1].equalsIgnoreCase("*")))
          {
              answer = a*b;  
          }
          if(message[1].equalsIgnoreCase("Add") || (message[1].equalsIgnoreCase("+")))
          {
            answer = a+b;
          }
          if(message[1].equalsIgnoreCase("Subtract") || (message[1].equalsIgnoreCase("-")))
          {
            answer = a-b;
          }
          if(message[1].equalsIgnoreCase("Divide") || (message[1].equalsIgnoreCase("/")))
          {
            answer = a/b;
          }
            return answer;

      }


    }

客户代码:

package One;

import java.net.*;
import java.util.Scanner;
import java.io.*;

    public class ClientCalculator {


        public static void main(String[] args) {

            Socket sc;  

            System.out.println("Client...");

            while(true){

                try
                {
                    Scanner sin = new  Scanner(System.in);
                    String question = sin.nextLine(); 
                    System.out.println("Processing: " + question);


                    sc = new Socket("localhost",9990);

                    PrintWriter pw = new PrintWriter(sc.getOutputStream());

                    pw.println(question);   
                    pw.flush();

                    BufferedReader br = new BufferedReader(new InputStreamReader(sc.getInputStream()));
                    String answer = br.readLine();
                    System.out.println(question + " = " + answer);
//                  sc.close();
//                  sin.close();
                }

                catch(Exception ee){

                }
            }
     }



    }

帮助菜单:

package One;

public class Help {

String menu(){

    String helpMenu = 
    "Instructions for the calculator " +
    "Input the number followed by space and then by word or operator and by number to get result " +
    "e.g. 5 + 5. or 30 Sin 30 - where 30 is the angle. " + 
    "Options are " + 
    "Multiply or (*) " + 
    "Add or (+) " +  
    "Subtract or (-) " + 
    "Divide or (/) " + 
    "Sin, Cos, Tan ";

    return helpMenu;

}


//  String noOfLines() {
//      
//      return "9";
//  }

}

运行代码:

package One;

public class TestClass {

    public static void main(String[] args) {

        new ServerCalculator();

    }

}
4

3 回答 3

2

使用“\n”字符插入新行。

代替

String helpMenu = 
    "Instructions for the calculator " +
    "Input the number followed by space and then by word or operator and by number to get result " +
    "e.g. 5 + 5. or 30 Sin 30 - where 30 is the angle. " + 
    "Options are " + 
    "Multiply or (*) " + 
    "Add or (+) " +  
    "Subtract or (-) " + 
    "Divide or (/) " + 
    "Sin, Cos, Tan ";

String helpMenu = 
    "Instructions for the calculator\n" +
    "Input the number followed by space and then by word or operator and by number to get result\n" +
    "e.g. 5 + 5. or 30 Sin 30 - where 30 is the angle. \n" + 
    "Options are \n" + 
    "Multiply or (*) \n" + 
    "Add or (+)\n " +  
    "Subtract or (-) \n" + 
    "Divide or (/) \n" + 
    "Sin, Cos, Tan \n";
于 2012-11-13T17:32:27.240 回答
2

您必须在客户端的 readline 方法周围添加一个 while 循环:

String answer = null;
while((answer=br.readLine()) != null)
{
//print answer
}

最好使用常量而不是硬编码:System.getProperty("line.separator");

于 2012-11-13T17:43:48.053 回答
2

那是因为你在一行中发送它们。您需要newline (\n)在每行之后附加一个,以将它们显示在不同的行中。

另请注意: -StringBuilder如果您想使用过多的字符串连接,最好使用 。

您可以将菜单方法更改为:

String menu(){
    StringBuilder helpMenu = new StringBuilder();

    helpMenu.append("Instructions for the calculator \n")
            .append("Input the number followed by space and then by word or operator and by number to get result \n")
            .append("e.g. 5 + 5. or 30 Sin 30 - where 30 is the angle. \n")
            .append("Options are: \n")
            .append("\tMultiply or (*) \n")
            .append("\tAdd or (+) \n")
            .append("\tSubtract or (-) \n")
            .append("\tDivide or (/) \n")
            .append("\tSin, Cos, Tan \n");

    return helpMenu.toString();

}
于 2012-11-13T17:33:18.453 回答