我正在研究在linux机器上运行的java应用程序,它应该将文件的时间戳更改为另一个以epoch形式存储的时间。 需要更改其时间戳的文件存在于本地文件系统中。
Ex - localFile.txt,其时间戳显示 17 Jul 5 20:03 需要更改为纪元“1341446400000”
我写了这样的代码 -
private void modifyTime(final String localFile, final long originalEpoch) throws IOException {
String getDateFromEpoch = "date -d@" + String.valueOf(originalEpoch);
//getDateFromEpoch is returned in form - "Thu Jul 5 20:03:32 UTC 2012"
Process process = runCommand(getDateFromEpoch);
InputStream iStream = process.getInputStream();
BufferedReader bufReader = new BufferedReader(new InputStreamReader(iStream));
String originalDate = bufReader.readLine();
bufReader.close();
String touch = "touch -c -d " + originalDate + " " + localFile;
runCommand(touch);
}
private Process runCommand(final String cmd) throws IOException {
Process p = Runtime.getRuntime().exec(cmd);
try {
p.waitFor();
} catch (InterruptedException e) {
// ignore this exception
}
return p;
}
正在运行"date -d@" + String.valueOf(originalEpoch);
会返回类似 Thu Jul 5 20:03:32 UTC 2012 的内容。使用这个触摸命令对我不起作用。
有没有办法做到这一点?
答案 0 :(得分:2)
听起来你只想要File.setLastModified
http://docs.oracle.com/javase/7/docs/api/java/io/File.html#setLastModified(long)