我有一个要求是从源目录中读取.cmp
个文件然后将其解压缩并放入目标目录中。我使用下面的代码来调用decomp程序,但它不起作用:
String filePath = "C:\\Users\\tizitan.ET\\Desktop\\TDClient\\decomp.exe";
Process p = Runtime.getRuntime().exec(filePath);
p.waitFor();
InputStream in = p.getInputStream();
int c;
while((c = in.read())!= -1){
baos.write(buf, 0, c);
}
baos.close();
请帮忙