当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DateFormat parse(string , ParsePosition)用法及代码示例


DateFormat类的parse(String the_text,ParsePosition position)方法用于解析字符串中的文本以生成Date。该方法解析从起始位置给定的索引处开始的文本。

用法:

public abstract Date parse(String the_text, ParsePosition position)

参数:该方法有两个参数:


  • the_text:这是String类型的,是指要解析以生成日期的字符串。
  • position:这是ParsePosition对象类型,是指解析开始索引的信息。

返回值:该方法返回从字符串解析的日期,或者在出现错误的情况下返回Null。

以下示例程序旨在说明DateFormat的parse()方法的用法:
范例1:

// Java Code to illustrate parse() method 
  
import java.text.*; 
import java.util.Calendar; 
  
public class DateFormat_Demo { 
    public static void main(String[] args) 
    { 
        DateFormat DFormat 
            = new SimpleDateFormat("MM/ dd/ yy"); 
  
        try { 
            Calendar cal = Calendar.getInstance(); 
  
            // Use of parse() method to parse 
            // Date From String 
            String dt = "10/ 27/ 16"; 
            System.out.println("The unparsed"
                               + " string is:" + dt); 
  
            cal.setTime(DFormat.parse(dt)); 
            System.out.println("Time parsed:"
                               + cal.getTime()); 
        } 
        catch (ParseException excpt) { 
            excpt.printStackTrace(); 
        } 
    } 
}
输出:
The unparsed string is:10/ 27/ 16
Time parsed:Thu Oct 27 00:00:00 UTC 2016

范例2:

// Java Code to illustrate parse() method 
  
import java.text.*; 
import java.util.Calendar; 
  
public class DateFormat_Demo { 
    public static void main(String[] args) 
    { 
        DateFormat DFormat 
            = new SimpleDateFormat("MM/ dd/ yy"); 
  
        try { 
            Calendar cal = Calendar.getInstance(); 
  
            // Use of parse() method to parse 
            // Date From String 
            String dt = "01/ 29/ 19"; 
            System.out.println("The unparsed"
                               + " string is:" + dt); 
  
            cal.setTime(DFormat.parse(dt)); 
            System.out.println("Time parsed:"
                               + cal.getTime()); 
        } 
        catch (ParseException excpt) { 
            excpt.printStackTrace(); 
        } 
    } 
}
输出:
The unparsed string is:01/ 29/ 19
Time parsed:Tue Jan 29 00:00:00 UTC 2019

参考: https://docs.oracle.com/javase/7/docs/api/java/text/DateFormat.html#parse(java.lang.String, %20java.text.ParsePosition)



相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 DateFormat parse(string , ParsePosition) Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。