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.
