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


Java ChoiceFormat parse()用法及代码示例


java.text.ChoiceFormat类的parse()方法用于获取ChoiceFormat对象中特定格式的限制值。

用法:

public Number parse(String text, ParsePosition status)

参数:此方法采用以下参数:


  • text:这是必须以字符串格式找到其极限值的文本。
  • status:这是该选择项在哪个索引上找到的极限值。

返回值:此方法返回指定类型的数组,该类型是附加到ChoiceFormat对象的格式。

异常:如果字符串文本或状态为null,则此方法引发NullPointerException。

下面是说明parse()方法的示例:

示例1:

// Java program to demonstrate 
// getFormats() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // creating and initializing ChoiceFormat 
            ChoiceFormat cf1 
                = new ChoiceFormat( 
                    "4#wed| 5#thu | 6#fri | 7#sat"); 
  
            // creating and initializing ParsePosition 
            ParsePosition par = new ParsePosition(0); 
  
            // getting limit of particular format 
            // of ChoiceFormat Object 
            // using getFormats() method 
            Number limit 
                = cf1.parse("wed", par); 
  
            // display the result 
            System.out.print("limit: "
                             + limit.intValue()); 
        } 
        catch (NullPointerException e) { 
            System.out.println("\nString is Null"); 
            System.out.println("Exception thrown: " + e); 
        } 
    } 
}
输出:
limit: 4

示例2:

// Java program to demonstrate 
// getFormats() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // creating and initializing ChoiceFormat 
            ChoiceFormat cf1 
                = new ChoiceFormat( 
                    "4#wed| 5#thu | 6#fri | 7#sat"); 
  
            // creating and initializing ParsePosition 
            ParsePosition par = new ParsePosition(0); 
  
            // getting limit of particular format 
            // of ChoiceFormat Object 
            // using getFormats() method 
            Number limit 
                = cf1.parse(null, par); 
  
            // display the result 
            System.out.print("limit: "
                             + limit.intValue()); 
        } 
        catch (NullPointerException e) { 
            System.out.println("String is Null"); 
            System.out.println("Exception thrown: " + e); 
        } 
    } 
}
输出:
String is Null
Exception thrown: java.lang.NullPointerException

参考: https://docs.oracle.com/javase/9/docs/api/java/text/ChoiceFormat.html#parse-java.lang.String-java.text.ParsePosition-



相关用法


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