当前位置 : 主页 > 编程语言 > java >

字符串转日期

来源:互联网 收集:自由互联 发布时间:2021-06-28
把不同格式的字符串转为日期类型的工具 import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class DateConverter {static SimpleDateFormat [] sdfs = new SimpleDateFormat[] {new SimpleD
把不同格式的字符串转为日期类型的工具
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class DateConverter {

	static SimpleDateFormat [] sdfs = new SimpleDateFormat[] {
			new SimpleDateFormat("yyyy-MM-dd"),
			new SimpleDateFormat("yyyy/MM/dd"),
			new SimpleDateFormat("MM-dd-yyyy"),
			new SimpleDateFormat("MM/dd/yyyy")
	};
	
	public static Date getDate(String dateString) {
		for (int i = 0; i < sdfs.length; i++) {
			try {
				return sdfs[i].parse(dateString);
			} catch (ParseException e) {
				continue;
			}
		}
		return null;
	}
}
网友评论