Java.io.DataInputStream.readUTF()方法實例
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!!