java.io.DataInputStream.readShort() 方法讀取兩個輸入位元組並返回一個short值。
以下是java.io.DataInputStream.readShort()方法的宣告:
public final short readShort()
NA
此方法返回2個位元組的輸入流,解譯為short值。
IOException -- -- 如果發生I/ O錯誤或流被關閉。
EOFException -- -- 如果輸入流中讀取兩個位元組之前到達末尾。
下面的範例演示java.io.DataInputStream.readShort()方法的用法。
package com.yiibai; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; public class DataInputStreamDemo { public static void main(String[] args) throws IOException { InputStream is = null; DataInputStream dis = null; FileOutputStream fos = null; DataOutputStream dos = null; short[] s = {12982,3568}; try{ // create file output stream fos = new FileOutputStream("c:\test.txt"); // create data output stream dos = new DataOutputStream(fos); // for each short in short buffer for(short j:s) { // write short to data output stream dos.writeShort(j); } // force data to the underlying file output stream dos.flush(); // create file input stream is = new FileInputStream("c:\test.txt"); // create new data input stream dis = new DataInputStream(is); // available stream to be read while(dis.available()>0) { // read two bytes from data input, return short short k = dis.readShort(); // print short value System.out.print(k+" "); } }catch(Exception e){ // if any error occurs e.printStackTrace(); }finally{ // releases all system resources from the streams if(is!=null) is.close(); if(dis!=null) dis.close(); if(fos!=null) fos.close(); if(dos!=null) dos.close(); } } }
讓我們編譯和執行上面的程式,這將產生以下結果:
12982 3568