我正在使用Win7。我第一次使用java重命名文件(file.cmptr to file.sql)来做一些事情,之后我想用他的旧名字重命名它(file.cmptr)
但这失败了,当我重命名文件时,有时无法重命名。它随机发生。
- 有时第一个文件根本没有改变,我没有得到操作
- 有时它更改为 .sql 文件,我得到了操作,但文件保持 .sql
在我的例子中:
我第一次更改扩展名:
int dotIndex = filechose.getPath().lastIndexOf('.'); String newpath = filechose.getPath().substring(0, dotIndex);; newpath = newpath + ".sql"; File filefinal = new File(newpath); filechose.renameTo(filefinal); String path=newpath;
在我对新文件进行操作之后:
Runtime.getRuntime().exec("cmd /c mysql -u root gestiondestock <"+'"'+path+'"');
最后我试图再次重命名文件
File file1 = new File(path);
int dotIndex1 = path.lastIndexOf('.');
String newpath1 = path.substring(0, dotIndex1);
newpath1 = newpath1 + ".computeramg";
File file2 = new File(newpath1);
file1.renameTo(file2);
解决了。
它适用于等待我只改变这个:
Process p = Runtime.getRuntime().exec("cmd /c mysql -u root gestiondestock <"+'"'+path+'"');
p.waitFor();