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


Java ParsePosition setErrorIndex()用法及代码示例


java.text.ParsePosition类的setErrorIndex()方法用于设置可能发生解析错误的索引。

用法:

public void setErrorIndex(int ei)

参数:此方法将整数ei作为参数,可能会发生解析错误。


返回值:此方法无返回值。

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

范例1:

// Java program to demonstrate 
// setErrorIndex() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // new ParsePosition Object 
            ParsePosition pos 
                = new ParsePosition(1); 
  
            // set index for the parsing error 
            // using setErrorIndex() method 
            pos.setErrorIndex(3); 
  
            // getting the current 
            // ParsePosition of 
            int i = pos.getErrorIndex(); 
  
            // display result 
            System.out.println( 
                "index at which error occurred:"
                + Integer.toString(i)); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println(e); 
        } 
    } 
}
输出:
index at which error occurred:3

范例2:

// Java program to demonstrate 
// setErrorIndex() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // new ParsePosition Object 
            ParsePosition pos 
                = new ParsePosition(500); 
  
            // set index for the parsing error 
            // using setErrorIndex() method 
            pos.setErrorIndex(3000); 
  
            // getting the current 
            // ParsePosition of 
            int i = pos.getErrorIndex(); 
  
            // display result 
            System.out.println( 
                "index at which error occurred:"
                + Integer.toString(i)); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println(e); 
        } 
    } 
}
输出:
index at which error occurred:3000

参考: https://docs.oracle.com/javase/9/docs/api/java/text/ParsePosition.html#setErrorIndex-int-



相关用法


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