我的节目不能正常工作。有子进程java程序跟进,当我执行单独的子进程文件被创建,但当我在另一个程序中使用runtime.getruntime().exec(child)
并运行时,它不是在子程序中创建文件。那为什么不创造?
我想在运行父进程时创建文件,即从child:
public static void main(String[] args) {
try{
RandomAccessFile myfile=new RandomAccessFile("XXYYAA.jpg","rw");
System.out.println("ffff");
}catch(Exception ex){
ex.printStackTrace();
}
try {
//RandomAccessFile a=new RandomAccessFile("C:\\Users\\mohammad\\Documents\\asd.txt","rw");
} catch (InterruptedException ex) {
Logger.getLogger(Myproject.class.getName()).log(Level.SEVERE, null, ex);
}
}