Java Internalization - การแปลง Unicode จาก / เป็น Reader / Writer

คลาส Reader และ Writer เป็นคลาสสตรีมที่เน้นอักขระ สิ่งเหล่านี้สามารถใช้เพื่ออ่านและแปลงอักขระ Unicode

การแปลง

ตัวอย่างต่อไปนี้จะแสดงการแปลง Unicode String เป็น UTF8 byte [] และ UTF8 byte [] เป็น Unicode byte [] โดยใช้คลาส Reader และ Writer

IOTester.java

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.Reader;
import java.io.Writer;
import java.nio.charset.Charset;
import java.text.ParseException;

public class I18NTester {
   public static void main(String[] args) throws ParseException, IOException {

      String input = "This is a sample text" ;

      InputStream inputStream = new ByteArrayInputStream(input.getBytes());

      //get the UTF-8 data
      Reader reader = new InputStreamReader(inputStream, Charset.forName("UTF-8"));

      //convert UTF-8 to Unicode
      int data = reader.read();
      while(data != -1){
         char theChar = (char) data;
         System.out.print(theChar);
         data = reader.read();
      }
      reader.close();

      System.out.println();

      //Convert Unicode to UTF-8 Bytes
      ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
      Writer writer = new OutputStreamWriter(outputStream, Charset.forName("UTF-8"));

      writer.write(input);
      writer.close();

      String out = new String(outputStream.toByteArray());
   
      System.out.println(out);
   }  
}

เอาต์พุต

มันจะพิมพ์ผลลัพธ์ต่อไปนี้

This is a sample text
This is a sample text
พิมพ์