How do I encode/decode UTF-16LE byte arrays with a BOM?

38,196

Solution 1

The "UTF-16" charset name will always encode with a BOM and will decode data using either big/little endianness, but "UnicodeBig" and "UnicodeLittle" are useful for encoding in a specific byte order. Use UTF-16LE or UTF-16BE for no BOM - see this post for how to use "\uFEFF" to handle BOMs manually. See here for canonical naming of charset string names or (preferably) the Charset class. Also take note that only a limited subset of encodings are absolutely required to be supported.

Solution 2

This is how you do it in nio:

    return Charset.forName("UTF-16LE").encode(message)
            .put(0, (byte) 0xFF)
            .put(1, (byte) 0xFE)
            .array();

It is certainly supposed to be faster, but I don't know how many arrays it makes under the covers, but my understanding of the point of the API is that it is supposed to minimize that.

Solution 3

First off, for decoding you can use the character set "UTF-16"; that automatically detects an initial BOM. For encoding UTF-16BE, you can also use the "UTF-16" character set - that'll write a proper BOM and then output big endian stuff.

For encoding to little endian with a BOM, I don't think your current code is too bad, even with the double allocation (unless your strings are truly monstrous). What you might want to do if they are is not deal with a byte array but rather a java.nio ByteBuffer, and use the java.nio.charset.CharsetEncoder class. (Which you can get from Charset.forName("UTF-16LE").newEncoder()).

Solution 4

    ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(string.length() * 2 + 2);
    byteArrayOutputStream.write(new byte[]{(byte)0xFF,(byte)0xFE});
    byteArrayOutputStream.write(string.getBytes("UTF-16LE"));
    return byteArrayOutputStream.toByteArray();

EDIT: Rereading your question, I see you would rather avoid the double array allocation altogether. Unfortunately the API doesn't give you that, as far as I know. (There was a method, but it is deprecated, and you can't specify encoding with it).

I wrote the above before I saw your comment, I think the answer to use the nio classes is on the right track. I was looking at that, but I'm not familiar enough with the API to know off hand how you get that done.

Share:
38,196
Jared Oberhaus
Author by

Jared Oberhaus

See my Google+ profile. Other profiles: Facebook Linkedin Twitter FriendFeed Flickr Picasaweb Blogger Mashable Klout Crunchbase Windows Live Quora Wikipedia

Updated on July 11, 2022

Comments

  • Jared Oberhaus
    Jared Oberhaus almost 2 years

    I need to encode/decode UTF-16 byte arrays to and from java.lang.String. The byte arrays are given to me with a Byte Order Marker (BOM), and I need to encoded byte arrays with a BOM.

    Also, because I'm dealing with a Microsoft client/server, I'd like to emit the encoding in little endian (along with the LE BOM) to avoid any misunderstandings. I do realize that with the BOM it should work big endian, but I don't want to swim upstream in the Windows world.

    As an example, here is a method which encodes a java.lang.String as UTF-16 in little endian with a BOM:

    public static byte[] encodeString(String message) {
    
        byte[] tmp = null;
        try {
            tmp = message.getBytes("UTF-16LE");
        } catch(UnsupportedEncodingException e) {
            // should not possible
            AssertionError ae =
            new AssertionError("Could not encode UTF-16LE");
            ae.initCause(e);
            throw ae;
        }
    
        // use brute force method to add BOM
        byte[] utf16lemessage = new byte[2 + tmp.length];
        utf16lemessage[0] = (byte)0xFF;
        utf16lemessage[1] = (byte)0xFE;
        System.arraycopy(tmp, 0,
                         utf16lemessage, 2,
                         tmp.length);
        return utf16lemessage;
    }
    

    What is the best way to do this in Java? Ideally I'd like to avoid copying the entire byte array into a new byte array that has two extra bytes allocated at the beginning.

    The same goes for decoding such a string, but that's much more straightforward by using the java.lang.String constructor:

    public String(byte[] bytes,
                  int offset,
                  int length,
                  String charsetName)