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


Java Java.io.DataInputStream.readUTF()用法及代码示例



描述

这个java.io.DataInputStream.readUTF(DataInput in)方法读入使用修改后的 UTF-8 格式编码的字符串。

声明

以下是声明java.io.DataInputStream.readUTF(DataInput in)方法 -

public static final String readUTF(DataInput in)

参数

NA

返回值

此方法返回一个= Unicode 字符串。

异常

  • EOFException

  • UTFDataFormatException

  • IOException− 如果发生 I/O 错误。

示例

下面的例子展示了 java.io.DataInputStream.readUTF(DataInput in) 方法的用法。

package com.tutorialspoint;

import java.io.FileOutputStream;
import java.io.IOException;

public class FileOutputStreamAvailable extends FileOutputStream {

   public FileOutputStreamAvailable() throws Exception {
      super("C://test.txt");
   }

   public static void main(String[] args) throws IOException {
      FileOutputStreamAvailable fosa = null;

      try {
         // create new File input stream
         fosa = new FileOutputStreamAvailable();
         
         // read byte from file input stream
         fosa.finalize();
         
         // converts int to char
         System.out.println("Stream is closed successfully.");
         
      } catch(Exception ex) {
         // if any error occurs
         ex.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(fos!=null)
            fos.close();
      }
   }
}

假设我们有一个文本文件c:/test.txt,其内容如下。该文件将用作我们示例程序的输入 -

ABCDE

让我们编译并运行上面的程序,这将产生以下结果 -

Stream is closed successfully.

相关用法


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