让我们假设我刚刚使用BufferedInputStream将UTF-8编码文本文件的字节读入字节数组。我知道我可以使用下面的例程将字节转换为字符串,但是是否有一种更有效/更聪明的方法来做到这一点,而不仅仅是遍历字节并转换每个字节?

public String openFileToString(byte[] _bytes)
{
    String file_string = "";

    for(int i = 0; i < _bytes.length; i++)
    {
        file_string += (char)_bytes[i];
    }

    return file_string;    
}

当前回答

要转换utf-8数据,不能假设字节和字符之间是1-1对应关系。 试试这个:

String file_string = new String(bytes, "UTF-8");

(呸呸呸。我发现我在点击“发布你的答案”按钮时慢了很多。)

要将整个文件读取为字符串,可以这样做:

public String openFileToString(String fileName) throws IOException
{
    InputStream is = new BufferedInputStream(new FileInputStream(fileName));

    try {
        InputStreamReader rdr = new InputStreamReader(is, "UTF-8");
        StringBuilder contents = new StringBuilder();
        char[] buff = new char[4096];
        int len = rdr.read(buff);
        while (len >= 0) {
            contents.append(buff, 0, len);
        }
        return buff.toString();
    } finally {
        try {
            is.close();
        } catch (Exception e) {
            // log error in closing the file
        }
    }
}

其他回答

为此,您可以使用String(byte[] bytes)构造函数。详情请参见此链接。 你还必须考虑你的平台的默认字符集,根据java文档:

使用解码指定的字节数组来构造新的String 平台的默认字符集。新字符串的长度是a 函数的字符集,因此可能不等于长度 字节数组。当给定字节时,此构造函数的行为 在未指定的默认字符集中无效。的 类时,应该使用CharsetDecoder类 解码过程是必需的。

查看String的构造函数

String str = new String(bytes, StandardCharsets.UTF_8);

如果你觉得很懒,你可以使用Apache Commons IO库直接将InputStream转换为字符串:

String str = IOUtils.toString(inputStream, StandardCharsets.UTF_8);

我用这种方法

String String = new String(_bytes, 0, numBytes);

为什么不从一开始就得到你要找的东西,从文件中读取一个字符串,而不是一个字节数组呢?喜欢的东西:

BufferedReader in = new BufferedReader(new InputStreamReader( new FileInputStream( "foo.txt"), Charset.forName( "UTF-8"));

然后从内读取line,直到完成。

你可以使用这个问题中描述的方法(特别是因为你从一个InputStream开始):读取/转换一个InputStream到一个String

特别是,如果你不想依赖于外部库,你可以尝试这个答案,它通过InputStreamReader将InputStream读入char[]缓冲区,并将其追加到StringBuilder中。