El método parse() de la clase java.text.MessageFormat se utiliza para analizar el objeto de string a partir de la posición de análisis pasada en el método parse().
Sintaxis:
public Object[] parse(String source, ParsePosition pos)
Parámetro : este método toma los siguientes argumentos como parámetro.
- fuente: string sobre la que se realizará el análisis.
- pos :- es el índice de inicio del análisis.
Valor devuelto: este método devuelve una array de objetos como salida.
Excepción: este método genera NullPointerException si la posición de análisis es nula.
A continuación se muestran los ejemplos para ilustrar el método parse() :
Ejemplo 1:
Java
// Java program to demonstrate // parse() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // creating and initializing MessageFormat MessageFormat mf = new MessageFormat("{0, number, #}, {2, number, #.#}, {1, number, #.##}"); ; // creating and initializing String source String str = "10.456, 20.325, 30.444"; // creating and initializing ParsePosition ParsePosition pos = new ParsePosition(3); // parsing the string starting from pos // according to MessageFormat // using parse() method Object[] hash = mf.parse(str, pos); // display the result System.out.println("Parsed value are :"); for (int i = 0; i < hash.length; i++) System.out.println(hash[i]); } catch (NullPointerException e) { System.out.println("\nParse position is Null"); System.out.println("Exception thrown : " + e); } } }
Producción:
Parsed value are : 456 30.444 20.325
Ejemplo 2:
Java
// Java program to demonstrate // parse() method import java.text.*; import java.util.*; import java.io.*; public class GFG { public static void main(String[] argv) { try { // creating and initializing MessageFormat MessageFormat mf = new MessageFormat("{0, number, #}, {2, number, #.#}, {1, number, #.##}"); // creating and initializing String source String str = "10.456, 20.325, 30.444"; // creating and initializing ParsePosition // ParsePosition pos = new ParsePosition(3); // parsing the string starting from pos // according to MessageFormat // using parse() method Object[] hash = mf.parse(str, null); // display the result System.out.println("Parsed value are :"); for (int i = 0; i < hash.length; i++) System.out.println(hash[i]); } catch (NullPointerException e) { System.out.println("Parse position is Null"); System.out.println("Exception thrown : " + e); } } }
Producción:
Parse position is Null Exception thrown : java.lang.NullPointerException
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA