我想使用treescan.exe
处理数据,因为我有一个.tre
文件和一个.cas
文件。现在我们从这两个文件中创建一个.prm文件。执行此.prm文件。我不了解如何编写Java程序,在treescan.exe
上提供输入,以将该.prm文件作为输入。我只能够运行.exe
文件,但我不知道如何进一步处理。
这是文件格式:
test.tre
00869 09.01
00947 09.01
00703 09.01
00329 09.01
00245 09.01
00102 09.01
00581 09.01
00409 09.01
09.01 09
09
test.cas
00102 45 95
00245 12 39
我只编写了用于打开.exe
文件的代码。如果有人知道如何处理,请提供帮助。
public class ProcessExe {
public static void main(String[] args) throws IOException, AWTException {
Robot robot = new Robot();
Runtime runtime=Runtime.getRuntime();
try{
Process process=runtime.exec("C://Program Files/TreeScan/TreeScan.exe");
}
catch(Exception e){
System.out.println(e);
}
}
}