Java.io.Reader.skip() Method



Description

The java.io.Reader.skip(long n) method skips characters. This method will block until some characters are available, an I/O error occurs, or the end of the stream is reached.

Declaration

Following is the declaration for java.io.Reader.skip() method.

public long skip(long n)

Parameters

n − The number of characters to skip.

Return Value

This method returns the number of characters actually skipped.

Exception

  • IllegalArgumentException − If n is negative.

  • IOException − If an I/O error occurs.

Example

The following example shows the usage of java.io.Reader.skip() method.

package com.tutorialspoint;

import java.io.*;

public class ReaderDemo {
   public static void main(String[] args) {
      String s = "Hello World";

      // create a new StringReader
      Reader reader = new StringReader(s);

      try {
         // read the first five chars
         for (int i = 0; i < 5; i++) {
            char c = (char) reader.read();

            // skip a char every time
            reader.skip(1);

            System.out.print("" + c);
         }

         // change line
         System.out.println();

         // close the stream
         reader.close();

      } catch (IOException ex) {
         ex.printStackTrace();
      }
   }
}

Let us compile and run the above program, this will produce the following result −

HloWr
java_io_reader.htm
Advertisements