使用 编码 API 更轻松地将 ArrayBuffer 转换为字符串

两年前,Renato Mangini 介绍了一种方法,用于在原始 ArrayBuffers 与相应数据的字符串表示法之间进行转换。在文章结尾,Renato 提到,用于处理转换的官方标准化 API 正在起草阶段。规范现已成熟,FirefoxGoogle Chrome 都已添加对 TextDecoderTextEncoder 接口的原生支持。

此实时示例(以下为摘录)所示,无论您需要使用哪种标准编码,Encoding API 都能让您轻松地在原始字节和原生 JavaScript 字符串之间转换。

<pre id="results"></pre>

<script>
    if ('TextDecoder' in window) {
    // The local files to be fetched, mapped to the encoding that they're using.
    var filesToEncoding = {
        'utf8.bin': 'utf-8',
        'utf16le.bin': 'utf-16le',
        'macintosh.bin': 'macintosh'
    };

    Object.keys(filesToEncoding).forEach(function(file) {
        fetchAndDecode(file, filesToEncoding[file]);
    });
    } else {
    document.querySelector('#results').textContent = 'Your browser does not support the Encoding API.'
    }

    // Use XHR to fetch `file` and interpret its contents as being encoded with `encoding`.
    function fetchAndDecode(file, encoding) {
    var xhr = new XMLHttpRequest();
    xhr.open('GET', file);
    // Using 'arraybuffer' as the responseType ensures that the raw data is returned,
    // rather than letting XMLHttpRequest decode the data first.
    xhr.responseType = 'arraybuffer';
    xhr.onload = function() {
        if (this.status == 200) {
        // The decode() method takes a DataView as a parameter, which is a wrapper on top of the ArrayBuffer.
        var dataView = new DataView(this.response);
        // The TextDecoder interface is documented at http://encoding.spec.whatwg.org/#interface-textdecoder
        var decoder = new TextDecoder(encoding);
        var decodedString = decoder.decode(dataView);
        // Add the decoded file's text to the <pre> element on the page.
        document.querySelector('#results').textContent += decodedString + '\n';
        } else {
        console.error('Error while requesting', file, this);
        }
    };
    xhr.send();
    }
</script>

上述示例使用功能检测来确定当前浏览器中是否提供所需的 TextDecoder 接口,如果不提供,则会显示错误消息。在实际应用中,如果不支持原生实现,您通常会改用其他实现。幸运的是,Renato 在其原始文章中提到的文本编码库仍然是一个不错的选择。该库会在支持原生方法的浏览器上使用原生方法,并在尚未添加支持的浏览器上为 Encoding API 提供 polyfill。

2014 年 9 月更新:修改了示例,以说明如何检查当前浏览器中是否支持 Encoding API。