0

我有一个程序 Main.java:

public class Main {
  public static void main() throws FileNotFoundException 
      {       
      BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
      System.out.println("Enter no: \t");
      int sq=0;
      try {
        sq=Integer.parseInt(br.readLine());
    } catch (IOException e) {           
        e.printStackTrace();
    }         
    System.out.println(sq*sq);
  }
}

我不应该编辑上面的代码(Main.java),我应该从另一个 java 程序执行这个程序。所以,我想出了以下代码:

public class CAR {
public static void main(String[] args) {
    try {               
        Class class1 = Class.forName("executor.Main"); // executor is the directory in which the files Main.java and CAR.java are placed
        Object object = class1.newInstance();
        Method method = class1.getMethod("main", null);
        method.invoke(object, null);
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
}

通过运行 CAR.java,输出如下:

Enter no:   
2                  // this is the number I entered through the console
square is:   4

这很好用。但是现在,我需要输入值到“sq”(Main.java 中的变量),而不是从控制台而是从使用程序 CAR.java 的文本文件而不编辑 Main.java。如果不编辑 Main.java,我无法弄清楚如何做到这一点。

例如,如果 chech.txt 的内容为:10 100。然后,通过运行 CAR.java,我应该读取值 10 并将其提供给等待控制台以分配给“sq”的值并比较打印在带有 100 的控制台。并将 CAR.java 的输出打印为“测试通过”。

请为此提出解决方案。

可以将以下代码片段添加到 CAR.java 以从文件中读取值:

File f = new File("check.txt");
BufferedReader bf = new BufferedReader(new FileReader(f));
String r = bf.readLine();
String[] r1 = r.split(" ");
System.out.println("Input= " + r1[0] + "    Output=  " + r1[1]);
4

1 回答 1

0

System.setIn() 发挥了作用……
它指定了 jvm,以改变从“System.in”获取输入的方式。例子:

System.setIn(new FileInputStream("chech.txt"));

这从“check.txt”获取输入,而不是等待来自控制台的输入。示例程序:

public class systemSetInExample {

public static void main(String[] args) {
        BufferedReader br=new BufferedReader(new InputStreamReader(System.in));

        try {
            System.out.println("Enter input:  ");
            String st=br.readLine();                 // takes input from console
            System.out.println("Entered:  "+st);    

            System.setIn(new FileInputStream("test.txt"));
            br=new BufferedReader(new InputStreamReader(System.in));
            st=br.readLine();                       // takes input from file- "test.txt" 
            System.out.println("Read from file:  "+st); 

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

}

于 2013-12-13T09:09:00.827 回答