當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.OutputStreamWriter.getEncoding()用法及代碼示例



描述

這個java.io.OutputStreamWriter.getEncoding()方法返回此流使用的字符編碼的名稱。

如果編碼具有曆史名稱,則返回該名稱;否則返回編碼的規範名稱。

如果此實例是使用 OutputStreamWriter(OutputStream, String) 構造函數創建的,則返回的名稱對於編碼是唯一的,可能與傳遞給構造函數的名稱不同。如果流已關閉,則此方法可能返回 null。

聲明

以下是聲明java.io.OutputStreamWriter.getEncoding()方法。

public String getEncoding()

參數

NA

返回值

此方法返回此編碼的曆史名稱,如果流已關閉,則可能返回 null。

異常

IOException- 如果發生 I/O 錯誤。

示例

下麵的例子展示了使用java.io.OutputStreamWriter.getEncoding()方法。

package com.tutorialspoint;

import java.io.*;

public class OutputStreamWriterDemo {
   public static void main(String[] args) {
      try {
         // create a new OutputStreamWriter
         OutputStream os = new FileOutputStream("test.txt");
         OutputStreamWriter writer = new OutputStreamWriter(os);

         // create a new FileInputStream to read what we write
         FileInputStream in = new FileInputStream("test.txt");

         // write something in the file
         writer.write(70);

         // flush the stream
         writer.flush();

         // get and print the encoding for this stream
         System.out.println("" + writer.getEncoding());

         // read what we write
         System.out.println("" + (char) in.read());

      } catch (Exception ex) {
         ex.printStackTrace();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

UTF8
F

相關用法


注:本文由純淨天空篩選整理自 Java.io.OutputStreamWriter.getEncoding() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。