java中怎样将字符串转化为date_如何将java字符串转换为Date对象

“ mm”表示日期的“分钟”片段。对于“月份”部分,请使用“ MM”。

因此,尝试将代码更改为:

DateFormat df = new SimpleDateFormat("MM/dd/yyyy");

Date startDate = df.parse(startDateString);

编辑:DateFormat对象包含一个日期格式定义,而不是Date对象,它仅包含日期而无需考虑格式。在谈论格式时,我们正在谈论以特定格式创建日期的字符串表示形式。请参阅以下示例:

import java.text.DateFormat;

import java.text.SimpleDateFormat;

import java.util.Date;

public class DateTest {

public static void main(String[] args) throws Exception {

String startDateString = "06/27/2007";

// This object can interpret strings representing dates in the format MM/dd/yyyy

DateFormat df = new SimpleDateFormat("MM/dd/yyyy");

// Convert from String to Date

Date startDate = df.parse(startDateString);

// Print the date, with the default formatting.

// Her

你可能感兴趣的:(java中怎样将字符串转化为date_如何将java字符串转换为Date对象)