Método de salto (largo) de StringReader en Java con ejemplos

El método skip(long) de StringReader Class en Java se usa para omitir el número especificado de caracteres en la transmisión. Este número de caracteres se especifica como parámetro. Si llega al final de la transmisión omitiendo, bloqueará la transmisión hasta que obtenga algunos caracteres o lanzará IOException.

Sintaxis:

public long skip(long numberOfChar)

Parámetros: este método acepta un parámetro numberOfChar que es el número de caracteres que este método omitirá.

Valor devuelto: este método devuelve un valor largo que es el número real de caracteres omitidos por este método.

Excepción: este método arroja:

  • IOException: si se produce algún error durante la salida de entrada
  • IllegalArgumentException: si el número de caracteres pasados ​​es negativo.

Los siguientes métodos ilustran el funcionamiento del método skip(long):

Programa 1:

// Java program to demonstrate
// StringReader skip(long) method
  
import java.io.*;
import java.util.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
            String str = "GeeksForGeeks";
  
            // Create a StringReader instance
            StringReader reader
                = new StringReader(str);
  
            // Get the character
            // to be read from the stream
            int ch;
  
            // Read the first 5 characters
            // to this reader using read() method
            // This will put the str in the stream
            // till it is read by the reader
            for (int i = 0; i < 5; i++) {
                ch = reader.read();
                System.out.print((char)ch);
            }
  
            System.out.println();
  
            // skip 3 characters using skip(long)
            reader.skip(3);
  
            System.out.println("Next 3 characters skipped.");
  
            // Read the 5 characters
            // to this reader using read() method
            for (int i = 0; i < 5; i++) {
                ch = reader.read();
                System.out.print((char)ch);
            }
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

Geeks
Next 3 characters skipped.
Geeks

Programa 2:

// Java program to demonstrate
// StringReader skip(long) method
  
import java.io.*;
import java.util.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
            String str = "GeeksForGeeks";
  
            // Create a StringReader instance
            StringReader reader
                = new StringReader(str);
  
            // Get the character
            // to be read from the stream
            int ch;
  
            // Read the first 5 characters
            // to this reader using read() method
            // This will put the str in the stream
            // till it is read by the reader
            for (int i = 0; i < 5; i++) {
                ch = reader.read();
                System.out.print((char)ch);
            }
  
            System.out.println();
  
            // skip 10 characters using skip(long)
            reader.skip(10);
  
            // Read the 5 characters
            // to this reader using read() method
            for (int i = 0; i < 5; i++) {
                ch = reader.read();
                System.out.print((char)ch);
            }
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

Geeks
?????

Referencia: https://docs.oracle.com/javase/9/docs/api/java/io/StringReader.html#skip-long-

Publicación traducida automáticamente

Artículo escrito por Code_r y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *