位置:首頁 > Java技術 > Java.io包 > Java.io.PushbackInputStream.mark()方法實例

Java.io.PushbackInputStream.mark()方法實例

java.io.PushbackInputStream.mark(int readlimit) 方法標誌著這個輸入流中的當前位置,但對於PushbackInputStream它什麼都不做。

聲明

以下是java.io.PushbackInputStream.mark()方法的聲明

public void mark(int readlimit)

參數

  • readlimit -- 標記位置變為無效之前可以讀取的字節的最大限製。

返回值

此方法不返回任何值。

異常

  • NA

例子

下麵的示例演示java.io.PushbackInputStream.mark()方法的用法。

package com.yiibai;

import java.io.*;

public class PushbackInputStreamDemo {

   public static void main(String[] args) {

      // declare a buffer and initialize its size:
      byte[] arrByte = new byte[1024];

      // create an array for our message
      byte[] byteArray = new byte[]{'H', 'e', 'l', 'l', 'o'};

      // create object of PushbackInputStream class for specified stream
      InputStream is = new ByteArrayInputStream(byteArray);
      PushbackInputStream pis = new PushbackInputStream(is);

      try {

         // read from the buffer one character at a time
         for (int i = 0; i < byteArray.length; i++) {

            // read a char into our array
            arrByte[i] = (byte) pis.read();

            // display the read byte
            System.out.print((char) arrByte[i]);
         }

         // mark this position, but it does nothing for this class
         pis.mark(5);

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

讓我們編譯和運行上麵的程序,這將產生以下結果:

Hello