java时间转时间戳_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java时间转时间戳

java时间转时间戳

 2019/7/26 13:10:12  arpenker  程序员俱乐部  我要评论(0)
  • 摘要:就一个破时间,也是转来转去。转你MLGB.也没看到有可用的工具类。沙逼!!!!一堆破逼转换,用来显示你的API设计的高级吗?如果时间可以重来。绝不选择JAVA!publicclassTest{publicstaticvoidmain(String[]args){DateFormatformat=newSimpleDateFormat("yyyy-MM-dd");format.setLenient(false);//要转换字符串str_testCalendarcalendar=Calendar
  • 标签:Java
就一个破时间,也是转来转去。转你MLGB.也没看到有可用的工具类。
沙逼!!!!

一堆破逼转换,用来显示你的API设计的高级吗?

如果时间可以重来。绝不选择JAVA!



public class Test {

public static void main(String[] args) {



DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
format.setLenient(false);
// 要转换字符串 str_test
Calendar calendar = Calendar.getInstance();
int month = calendar.get(Calendar.MONTH)+1;

String str_test = calendar.get(Calendar.YEAR) + "-" + month + "-"
+ calendar.get(Calendar.DAY_OF_MONTH);

try {
System.out.println(str_test);
// System.out.println(format.parse(str_test).getTime());
long newTime=format.parse(str_test).getTime();

Timestamp ts = new Timestamp(newTime);
System.out.println(newTime);
} catch (ParseException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}



}

}
上一篇: 什么?在SAP中国研究院里还需要会PHP开发? 下一篇: 没有下一篇了!
发表评论
用户名: 匿名