java – BufferedReader返回ISO-8859-15字符串 – 如何转换为UTF16字符串?

栏目: Java · 发布时间: 5年前

内容简介:我有一个FTP客户端类,它返回指向文件的InputStream.我想用BufferedReader逐行读取文件.问题是,客户端以二进制模式返回文件,并且该文件具有ISO-8859-15编码.翻译自:https://stackoverflow.com/questions/1069922/bufferedreader-returns-iso-8859-15-string-how-to-convert-to-utf16-string

我有一个FTP客户端类,它返回指向文件的InputStream.我想用BufferedReader逐行读取文件.问题是,客户端以二进制模式返回文件,并且该文件具有ISO-8859-15编码.

如果文件/流/无论真正包含ISO-8859-15编码文本,您只需在创建InputStreamReader时指定:

BufferedReader br = new BufferedReader(
    new InputStreamReader(ftp.getInputStream(), "ISO-8859-15"));

然后readLine()将使用 Java 的本机编码(UTF-16,而不是UTF-8)创建有效的字符串.

翻译自:https://stackoverflow.com/questions/1069922/bufferedreader-returns-iso-8859-15-string-how-to-convert-to-utf16-string


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Programming From The Ground Up

Programming From The Ground Up

Jonathan Bartlett / Bartlett Publishing / 2004-07-31 / USD 34.95

Programming from the Ground Up is an introduction to programming using assembly language on the Linux platform for x86 machines. It is a great book for novices who are just learning to program as wel......一起来看看 《Programming From The Ground Up》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具