我有一个关于在 Java 中使用 String[] args 的问题:
......
public static void main(String[] args) throws Exception {
new EMR().start(args);
}
public void start(String[] args) throws Exception {
File recordFile = new File(args[0]);
File instructionFile = new File(args[1]);
File outputFile = new File(args[2]);
.......
这只是文件读取的一个例子,所以如果我想运行代码并将实际的文件名/路径放入 main() 方法,我该如何实现它,例如,我可以这样写:
new EMR().start(1.txt,2.txt.3.txt)