File:是系统中目录(文件夹)和文件的抽象表示;
File:可以操作文件的基本属性,如文件名,文件路径,文件上级目录等;
不能去操作文件的内容,如果要操作文件内容,用IO流(之后的内容)。
路径的两种写法:
File file=new File("e:\\a\\b\\c\\test.txt");
File file=new File("e:/a/b/c/test.txt");
File类的常用方法:
file.exists();
file.isDirectory();
file.isFile();
file.getName();
file.getAbsolutePath();
File file=new File("e:/a/b/c/test.txt");
"e:/a/b/c/test.txt":可能是一个目录,可能是一个文件;
System.out.println(file.mkdirs());
1.file.mkdirs():如果创建成功,返回true;否则,返回false。
2.file.createNewFile(): 先把上级目录给准备好。
3.file.mkdir():只创建一层目录,先把上级目录给准备好。
String[] fileList=file.list();返回指定文件目录下的所有文件名(目录和文件)
File[] fileList=file.listFiles();返回指定文件目录下的所有文件(目录和文件),是文件类型;只列出一层,子目录是列不出来的。
Date:
1.Date date=new Date();
date:瞬时时间;当前时间--->系统时间;
2.创建一个Date的对象;有参构造;指定毫秒数;
Date date1=new Date(10*12*30*24*60*60*1000L);
3.date.getTime():把date所表示的日期,转换成毫秒数。
4.long time=System.currentTimeMillis();
DateFormat:日期格式化器---抽象类;子类:SimpleDateFormat
1.把日期转成字符串;df.format(date);
DateFormat df=new SimpleDateFormat("yyyy-MM-dd");
String strDate=df.format(date);
2.把字符串转化成日期;输入的字符串格式必须和格式化器设置的相同; df1.parse(strDate1);
String strDate1="2017-03-19";
DateFormat df1=new SimpleDateFormat("yyyy-MM-dd");
Date date1=df1.parse(strDate1);
Calendar:日历:表示一个具体的日期;Calendar:抽象类;
1.两者创建的都是Gregorian历的对象;得到是一个瞬时时间---》系统当前时间;
Calendar cal=Calendar.getInstance();
Calendar cal1=new GregorianCalendar();
2.Calendar类型可以转换成Date类型;
Date date=cal.getTime();
Date类型转成Calendar的;
cal1.setTime(date1);
3. Set方法:
cal.set(Calendar.YEAR, 2015);
cal.set(Calendar.MONTH, 9);//月份值:0-11,所以这里的9表示的是10月份;
cal.set(Calendar.DATE,10);
Get方法:
System.out.println(cal.get(Calendar.YEAR));
System.out.println(cal.get(Calendar.MONTH));
System.out.println(cal.get(Calendar.DATE));
System.out.println(cal.get(Calendar.DAY_OF_WEEK));//星期日是第一天;
System.out.println(cal.getActualMaximum(Calendar.DATE));