当前位置: 首页>>编程示例 >>用法及示例精选 >>正文


Java Objectinputstream skipBytes()用法及代码示例

ObjectInputStream 类的 skipBytes() 方法用于通过作为参数传递的数字跳过字节。

用法

public int skipBytes(int len) throws IOException

参数

len 作为要跳过的字节数

返回

实际跳过的字节数。

抛出

IOException

例子1

import java.io.*;

public class ObjectInputStreamreadunskipByteExample1 {
   public static void main(String[] args) {
      String s = "javaTpoint";
      
      try {
         FileOutputStream outstream = new FileOutputStream("file1.txt");
         ObjectOutputStream objoutstream = new ObjectOutputStream(outstream);
         objoutstream.writeUTF(s);
         objoutstream.writeUTF("javaTpoint provide tutorial for all languages");
         objoutstream.flush();
         ObjectInputStream objinstream = new ObjectInputStream(new FileInputStream("file1.txt"));
         objinstream.skipBytes(6);
         for (int i = 0; i < objinstream.available() - 6; i++) {
            System.out.print("" + (char) objinstream.readByte());
         }
      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

输出:

Tpoint
javaTpoint  provide

例子2

import java.io.*; 
  
public class ObjectInputStreamreadunskipByteExample2 
{ 
    public static void main(String[] args) throws IOException, ClassNotFoundException 
    { 
        FileOutputStream outstream = new FileOutputStream("file1.txt"); 
        ObjectOutputStream objoutStream = new ObjectOutputStream(outstream); 
        ObjectInputStream objinStream = new ObjectInputStream(new FileInputStream("file1.txt")); 
        objoutStream.writeUTF(" Welcome to javatpoint"); 
        objoutStream.flush(); 
        objinStream.skipBytes(7); 
          
        for (int i = 2; i < objinStream.available(); i++)  
        { 
            System.out.print((char) objinStream.readByte()); 
        } 
    } 
}

输出:

ome to j




相关用法


注:本文由纯净天空筛选整理自 Java Objectinputstream skipBytes() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。