El método setErrorIndex() de la clase java.text.ParsePosition se utiliza para establecer el índice en el que puede producirse un error de análisis.
Sintaxis:
public void setErrorIndex(int ei)
Parámetro : este método toma el número entero ei como un parámetro en el que puede ocurrir un error de análisis.
Valor devuelto: este método no tiene nada que devolver.
A continuación se muestran los ejemplos para ilustrar el método setErrorIndex() :
Ejemplo 1:
Java
// 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); } } }
Producción:
index at which error occurred: 3
Ejemplo 2:
Java
// 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); } } }
Producción:
index at which error occurred: 3000
Referencia: https://docs.oracle.com/javase/9/docs/api/java/text/ParsePosition.html#setErrorIndex-int-
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA