java.io.DataInputStream.readUTF() 方法讀取在已使用UTF-8修改版格式編碼的字串。字元的字串從UTF解碼,並返回為字串。
以下是java.io.DataInputStream.readUTF()方法的宣告:
public final String readUTF()
NA
該方法返回一個unicode字串。
IOException -- 如果流已關閉或發生或任何I/ O錯誤。
EOFException -- 如果輸入流已經到達末端。
UTFDataFormatException -- 如果位元組不表示一個有效的經修訂的UTF-8編碼。
下面的範例演示java.io.DataInputStream.readUTF()方法的用法。
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; String[] s = {"Hello", "World!!"}; try{ // create file output stream fos = new FileOutputStream("c:\test.txt"); // create data output stream dos = new DataOutputStream(fos); // for each string in string buffer for(String j:s) { // write string encoded as modified UTF-8 dos.writeUTF(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) { // reads characters encoded with modified UTF-8 String k = dis.readUTF(); // print 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(); } } }
讓我們編譯和執行上面的程式,這將產生以下結果:
Hello World!!