当前位置:首页 > 全部子站 > IT > 思科认证

考试吧整理2013java新手必看:经验总结(3)

来源:长理培训发布时间:2017-12-19 11:36:08

   java初学者必读-经验总结(3)

  11:删除文件夹下的所有目录:

  /*

  * 删除一个目录下的所有文件

  */

  public static void delAllFile(String path) {

  File file = new File(path);

  if(!file.exists()) return;

  if(!file.isDirectory()) return;

  String[] tempList = file.list();

  File temp = null;

  for(int i = 0; i < tempList.length; i++) {

  if(path.endsWith(File.separator))

  temp = new File(path + tempList[i]);

  else

  temp = new File(path + File.separator + tempList[i]);

  if(temp.isFile()) temp.delete();

  if(temp.isDirectory()) delAllFile(path + tempList[i]);

  }

  }

  12:字符串转换成时间及时间相减:

  1:) SimpleDateFormat formatter = new SimpleDateFormat ("yyyy.MM.dd");

  //假定像2002.07.04的是合法日期其他都非法。

  String str="2002.07.04";

  ParsePosition pos = new ParsePosition(0);

  Date dt=formatter.parse(str,pos);

  if(dt!=null)

  {

  //是合法日期

  }

  else

  {

  //非法日期

  }

  2:)

  两个日期相减

  import java.util.*;

  import java.text.*;

  class a

  {

  public static void main(String[] args)

  {

  String s1 = "2003/08/15 17:15:30";

  String s2 = "2002/09/14 14:18:37";

  try{

  SimpleDateFormat formatter = new SimpleDateFormat ("yyyy/MM/dd HH:mm:ss");

  ParsePosition pos = new ParsePosition(0);

  ParsePosition pos1 = new ParsePosition(0);

  Date dt1=formatter.parse(s1,pos);

  Date dt2=formatter.parse(s2,pos1);

  System.out.println("dt1="+dt1);

  System.out.println("dt2="+dt2);

  long l = dt1.getTime() - dt2.getTime();

  System.out.println("Hello World!="+l);

  }catch(Exception e){

  System.out.println("exception"+e.toString());

  }

  }

  }

  3:)得到2个月后的日期:

  import java.util.*;

  import java.text.DateFormat;

  public class test2

  {

  public static void main(String args[]) throws Exception

  {

  String date="2001/11/30";

  DateFormat dateFormat =

  DateFormat.getDateInstance(DateFormat.MEDIUM);

  GregorianCalendar grc=new GregorianCalendar();

  grc.setTime(new Date(date));

  grc.add(GregorianCalendar.MONTH,2);

  System.out.println("grc="+dateFormat.format(grc.getTime()));

  }

责编:罗莉

发表评论(共0条评论)
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,发表审核后显示!

国家电网校园招聘考试直播课程通关班

  • 讲师:刘萍萍 / 谢楠
  • 课时:160h
  • 价格 4580

特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关

配套通关班送国网在线题库一套

课程专业名称
讲师
课时
查看课程

国家电网招聘考试录播视频课程

  • 讲师:崔莹莹 / 刘萍萍
  • 课时:180h
  • 价格 3580

特色解密新课程高频考点,免费学习,助力一次通关

配套全套国网视频课程免费学习

课程专业名称
讲师
课时
查看课程
在线题库
面授课程更多>>
图书商城更多>>
在线报名
  • 报考专业:
    *(必填)
  • 姓名:
    *(必填)
  • 手机号码:
    *(必填)
返回顶部