zoukankan      html  css  js  c++  java
  • Java中Date、String、Calendar类型之间的转化

    1.Calendar 转化 String

      //获取当前时间的具体情况,如年,月,日,week,date,分,秒等
      Calendar calendat = Calendar.getInstance();
      SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
      String dateStr = sdf.format(calendar.getTime());
     
    2.String 转化Calendar
      String str="2010-5-27";
      SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");
      Date date =sdf.parse(str);
      Calendar calendar = Calendar.getInstance();
      calendar.setTime(date);
     
    3.Date 转化String
      SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");
      String dateStr=sdf.format(new Date());
     
    4.String 转化Date
      String str="2010-5-27";
      SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");
      Date birthday = sdf.parse(str);
     
    5.Date 转化Calendar
      Calendar calendar = Calendar.getInstance();
      calendar.setTime(new java.util.Date());
     
    6.Calendar转化Date
      Calendar calendar = Calendar.getInstance();
      java.util.Date date =calendar.getTime();
     
    7.demo:
    String转换Calendar:
      String str="2010-5-27";
      SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");
      Date date =sdf.parse(str);
      Calendar calendar = Calendar.getInstance();
      calendar.setTime(date);
    
    Calendar转换String:
      Calendar currentCal = Calendar.getInstance();
      SimpleDateFormat currentSdf = new SimpleDateFormat("yyyy-MM-dd");
      String currentCalTime = currentSdf.format(currentCal.getTime());
  • 相关阅读:
    hystrix项目实战
    hystrix实战总结;
    JAVA后端生成Token(令牌),用于校验客户端,防止重复提交
    如何防止表单的重复提交
    hystrix实战
    字符串为空的错误发生
    zuul的学习
    feign无法注入service
    springcloud实战案例苏宁和海信
    RPC与REST的区别
  • 原文地址:https://www.cnblogs.com/loong-hon/p/11255913.html
Copyright © 2011-2022 走看看