show/hide this revision's text 2 now handles surrogate pairs
// NB this doesn't do surrogate-pair decoding, so we may say end up // with a shorter string than necessary. char c = s.charAt(i); // ranges from http://en.wikipedia.org/wiki/UTF-8 int more skip = bytesUsed(s.charAt(i))0; int more; if (b + more > maxBytesc <= 0x007f) { return s.substring(0, i); //check b += more = 1; return selse if (c <= 0x07FF) { more = 2; } private static int bytesUsed(char else if (c <= 0xd7ff) { // ranges from http://en.wikipedia.org/wiki/UTF-8 more = 3; } else if (c <= 0x007f0xDFFF) return { // surrogate area, consume next char as well more = 4; skip = 1; } else { more = 3; if (c <= 0x07FFb + more > maxBytes) { return 2s.substring(0, i); // ignore code points that require surrogate-pairs b += more; i += skip; return 3s;

Note well: this

This doesnot handle any surrogate pairs that appear in the input string. If there are such Java's UTF-8 encoder (correctly) outputs surrogate pairs as a single 4-byte sequence instead of two 3-byte sequences, we may truncate so truncateWhenUTF8() will return the longest truncated string shorted than was necessaryit can. But If you ignore surrogate pairs in the implementation then again, I'm not sure if Java's UTF-8 encoder does the right thing either (I can't recall)truncated strings may be shorted than they needed to be.

private static void test(String s, int maxBytes, int expectedBytes) {    byte[] utf8 = s.getBytes(Charset.forName("UTF-8"))result.getBytes(Charset.forName("UTF-8"));    if (result.length() > utf8.length > maxBytes) {    if (utf8.length != expectedBytes) {        System.out.println("BAD: expected " + expectedBytes + " got " + utf8.length);    test("abcd", 0, 0);    test("abcd", 1, 1);    test("abcd", 2, 2);    test("abcd", 3, 3);    test("abcd", 4, 4);    test("abcd", 5)5, 4);    test("a\u0080b", 0, 0);    test("a\u0080b", 1, 1);    test("a\u0080b", 2)2, 1);    test("a\u0080b", 3, 3);    test("a\u0080b", 4, 4);    test("a\u0080b", 5)5, 4);    test("a\u0800b", 0, 0);    test("a\u0800b", 1, 1);    test("a\u0800b", 2)2, 1);    test("a\u0800b", 3)3, 1);    test("a\u0800b", 4, 4);    test("a\u0800b", 5, 5);    test("a\u0800b", 6)6, 5);    // surrogate pairs    test("\uD834\uDD1E", 0, 0);    test("\uD834\uDD1E", 1, 0);    test("\uD834\uDD1E", 2, 0);    test("\uD834\uDD1E", 3, 0);    test("\uD834\uDD1E", 4, 4);    test("\uD834\uDD1E", 5, 4);

Updated Modified code example, it now handles surrogate pairs.

show/hide this revision's text 1

Here is a simple loop that counts how big the UTF-8 representation is going to be, and truncates when it is exceeded:

public static String truncateWhenUTF8(String s, int maxBytes) {
    // NB this doesn't do surrogate-pair decoding, so we may say end up
    // with a shorter string than necessary.

    int b = 0;
    for (int i = 0; i < s.length(); i++) {
        int more = bytesUsed(s.charAt(i));
        if (b + more > maxBytes) {
            return s.substring(0, i); //check
        }
        b += more;
    }
    return s;
}

private static int bytesUsed(char c) {
    // ranges from http://en.wikipedia.org/wiki/UTF-8
    if (c <= 0x007f) return 1;
    if (c <= 0x07FF) return 2;
    // ignore code points that require surrogate-pairs
    return 3;
}

Note well: this does not handle any surrogate pairs that appear in the input string. If there are such pairs, we may truncate the string shorted than was necessary. But then again, I'm not sure if Java's UTF-8 encoder does the right thing either (I can't recall).

I haven't done a lot of testing on that code, but here are some preliminary tests:

private static void test(String s, int maxBytes) {
    String result = truncateWhenUTF8(s, maxBytes);
    byte[] utf8 = s.getBytes(Charset.forName("UTF-8"));
    if (result.length() > utf8.length) {
        System.out.println("BAD: our truncation of " + s + " was too big");
    }
    System.out.println(s + " truncated to " + result);
}

public static void main(String[] args) {
    test("abcd", 0);
    test("abcd", 1);
    test("abcd", 2);
    test("abcd", 3);
    test("abcd", 4);
    test("abcd", 5);

    test("a\u0080b", 0);
    test("a\u0080b", 1);
    test("a\u0080b", 2);
    test("a\u0080b", 3);
    test("a\u0080b", 4);
    test("a\u0080b", 5);

    test("a\u0800b", 0);
    test("a\u0800b", 1);
    test("a\u0800b", 2);
    test("a\u0800b", 3);
    test("a\u0800b", 4);
    test("a\u0800b", 5);
    test("a\u0800b", 6);

}