我有一个程序 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]);