JAVA中日期格式转换:2012-07-10 00:00:00.000如何转换成2012年07月10日
Java时间格式转换大全
import java.text.*;
import java.util.Calendar;
public class VeDate {
/**
* 获取现在时间
*
* @return 返回时间类型 yyyy-MM-dd HH:mm:ss
*/
public static Date getNowDate() {
Date currentTime = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateString = formatter.format(currentTime);
ParsePosition pos = new ParsePosition(8);
Date currentTime_2 = formatter.parse(dateString, pos);
return currentTime_2;
}
Java是一门面向对象编程语言,不仅吸收了C++语言的各种优点,还摒弃了C++里难以理解的多继承、指针等概念,因此Java语言具有功能强大和简单易用两个特征。Java语言作为静态面向对象编程语言的代表,极好地实现了面向对象理论,允许程序员以优雅的思维方式进行复杂的编程。
System.out.println(sdf.format(new Date()));
问题是我数据库取出来后是String类型、不是当前时间。这个方法我试了一下但是没搞定
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class Test {
public static void main(String[] args) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日");
try {
System.out.println(sdf.format(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2012-10-15 00:00:00"/*你要转化的日期*/)));
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
你试试看