本帖最后由 柳雷 于 2012-7-21 11:22 编辑
- import java.io.*;
- import java.util.Date;
- public class FileTest {
- /**
- * @param args
- */
- public static void main(String[] args) {
- File file=new File("1.txt");
- if(file.exists()) file.delete();
- else
- try {
- file.createNewFile();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- System.out.println(file.getName());
- System.out.println(file.getAbsolutePath());
- System.out.println(file.canRead());
- System.out.println(file.lastModified());
- }
- }
复制代码
运行结果中日期的显示,看不懂,怎么让它显示像一般的日期格式啊?
|