为什么文件重命名失败?

我的操作系统是Windows 7,文件系统中存在文件夹C:/test/dfhsdfhs

我的代码:

String path = "C:/test/dfhsdfhs/test2.txt";

boolean hasDeleteFolder = true;

File delFile = new File(path);
if (delFile.exists()) {

    if (hasDeleteFolder == true) {

        Date dateTimeNow = new Date();
        String _dateTimeNowStr = dateTimeNow.toString();
        _dateTimeNowStr = _dateTimeNowStr.replace(" ", "_");
        File timeStampFile = new File (delFile.getAbsolutePath()  + "_" + _dateTimeNowStr + "." + FilenameUtils.getExtension(delFile.getName()));

        if (delFile.renameTo(timeStampFile)) {

            System.out.println("renamed");
          } else {
             System.out.println("Error");
          }
    }
}

最佳答案

它失败,因为您的时间戳字符串包含Windows操作系统不允许的:字符。更换它们,它将起作用。

_dateTimeNowStr = _dateTimeNowStr.replace(":", "_");

07-26 09:35