Java中如何得到檔案的建立時間&最後修改時間

醉面韋陀發表於2010-09-08
import java.io.File;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
 * 如果是檔案沒有經過修改則得到的是建立時間 如果修改過則得到是最後修改的時間
 * 
 * @author iSoftStone
 */
public class TestGetFileTime {

	public static void main(String[] args) {

		DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
		File file = new File("d:/test.txt");
		// 毫秒數
		long modifiedTime = file.lastModified();
		System.out.println(modifiedTime);
		// 通過毫秒數構造日期 即可將毫秒數轉換為日期
		Date d = new Date(modifiedTime);
		System.out.println(format.format(d));

		// Set the last modified time
		long newModifiedTime = System.currentTimeMillis();
		// 設定最後一次修改的時間
		boolean success = file.setLastModified(newModifiedTime);
		if (!success) {
			System.out.println("change failed");
		} else {

			System.out.println(format.format(new Date(file.lastModified())));
		}

	}

}

 以下給出一個windows下取到具體時間的程式:

/**
 * 以下給出一個windows下取到具體時間的程式:
 * 
 * @author iSoftStone
 */
public class FirstTest {

	/** Creates a new instance of FirstTest */
	public FirstTest() {
	}

	public static void main(String[] args) {
		try {
			Process p = Runtime.getRuntime().exec(
					"cmd /C dir d:\\test.txt /tc");
			InputStream is = p.getInputStream();
			BufferedReader br = new BufferedReader(new InputStreamReader(is));
			String str;
			int i = 0;
			while ((str = br.readLine()) != null) {
				i++;
				if (i == 6) {
					System.out.println(str.substring(0, 17));
				}
			}

		} catch (java.io.IOException exc) {
			exc.printStackTrace();
		}
	}
}

 

相關文章