java将String转换成date存入oracle 日期格式(yyyy-MM-dd hh:mm:ss)和(yyyyMMddhhmmss)

自己写的博客,转载链接还是本博客链接
代码:

package self.learn.pratice;
import java.sql.Date;
import java.text.ParseException;
import java.text.SimpleDateFormat;
public class MainTest {

	public static void main(String[] args) throws ParseException {
		// TODO Auto-generated method stub
		String date1 ="2016-10-18 11:22:33";
		String date2 ="20190101100100";

		SimpleDateFormat format1=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
		SimpleDateFormat format2=new SimpleDateFormat("yyyyMMddhhmmss");
		Date datea=new Date(format1.parse(date1).getTime());
		Date dateb=new Date(format2.parse(date2).getTime());	
		System.out.println(datea);
		System.out.println(dateb);
	}

}

运行结果截图:
java将String转换成date存入oracle 日期格式(yyyy-MM-dd hh:mm:ss)和(yyyyMMddhhmmss)_第1张图片
注意: 代码中的 throws ParseException 很关键,加上去。

你可能感兴趣的:(java,SE)