How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:48:48Z http://stackoverflow.com/feeds/question/119328 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/119328/how-do-i-truncate-a-java-string-to-fit-in-a-given-number-of-bytes-once-utf-8-enc 4 How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? Johan Lübcke 2008-09-23T06:03:21Z 2008-11-05T14:35:33Z <p>How do I truncate a java <code>String</code> so that I know it will fit in a given number of bytes storage once it is UTF-8 encoded?</p> http://stackoverflow.com/questions/119328/how-do-i-truncate-a-java-string-to-fit-in-a-given-number-of-bytes-once-utf-8-enc/119338#119338 5 Answer by Bill James for How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? Bill James 2008-09-23T06:07:41Z 2008-09-28T02:42:10Z <p>UTF-8 encoding has a neat trait that allows you to see where in a byte-set you are.</p> <p>check the stream at the character limit you want. </p> <ul> <li>If its high bit is 0, it's a single-byte char, just replace it with 0 and you're fine. </li> <li>If its high bit is 1 and so is the next bit, then you're at the start of a multi-byte char, so just set that byte to 0 and you're good. </li> <li>If the high bit is 1 but the next bit is 0, then you're in the middle of a character, travel back along the buffer until you hit a byte that has 2 or more 1s in the high bits, and replace that byte with 0.</li> </ul> <p>Example: If your stream is: 31 33 31 C1 A3 32 33 00, you can make your string 1, 2, 3, 5, 6, or 7 bytes long, but not 4, as that would put the 0 after C1, which is the start of a multi-byte char.</p> http://stackoverflow.com/questions/119328/how-do-i-truncate-a-java-string-to-fit-in-a-given-number-of-bytes-once-utf-8-enc/119343#119343 0 Answer by mitchnull for How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? mitchnull 2008-09-23T06:11:47Z 2008-09-23T07:42:36Z <p>You should use [CharsetEncoder][1], the simple getBytes() + copy as many as you can can cut UTF-8 charcters in half.</p> <p>[1]: <a href="http://java.sun.com/javase/6/docs/api/java/nio/charset/CharsetEncoder.html#encode" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/nio/charset/CharsetEncoder.html#encode</a>(java.nio.CharBuffer, java.nio.ByteBuffer, boolean)</p> <p>Something like this:</p> <pre><code>public static int truncateUtf8(String input, byte[] output) { ByteBuffer outBuf = ByteBuffer.wrap(output); CharBuffer inBuf = CharBuffer.wrap(input.toCharArray()); Charset utf8 = Charset.forName("UTF-8"); utf8.newEncoder().encode(inBuf, outBuf, true); System.out.println("encoded " + inBuf.position() + " chars of " + input.length() + ", result: " + outBuf.position() + " bytes"); return outBuf.position(); } </code></pre> http://stackoverflow.com/questions/119328/how-do-i-truncate-a-java-string-to-fit-in-a-given-number-of-bytes-once-utf-8-enc/119586#119586 5 Answer by Matt Quail for How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? Matt Quail 2008-09-23T07:30:27Z 2008-09-23T14:11:51Z <p>Here is a simple loop that counts how big the UTF-8 representation is going to be, and truncates when it is exceeded:</p> <pre><code>public static String truncateWhenUTF8(String s, int maxBytes) { int b = 0; for (int i = 0; i &lt; s.length(); i++) { char c = s.charAt(i); // ranges from http://en.wikipedia.org/wiki/UTF-8 int skip = 0; int more; if (c &lt;= 0x007f) { more = 1; } else if (c &lt;= 0x07FF) { more = 2; } else if (c &lt;= 0xd7ff) { more = 3; } else if (c &lt;= 0xDFFF) { // surrogate area, consume next char as well more = 4; skip = 1; } else { more = 3; } if (b + more &gt; maxBytes) { return s.substring(0, i); } b += more; i += skip; } return s; } </code></pre> <p>This <em>does</em> handle <a href="http://en.wikipedia.org/wiki/UTF-16" rel="nofollow">surrogate pairs</a> that appear in the input string. Java's UTF-8 encoder (correctly) outputs surrogate pairs as a single 4-byte sequence instead of two 3-byte sequences, so <code>truncateWhenUTF8()</code> will return the longest truncated string it can. If you ignore surrogate pairs in the implementation then the truncated strings may be shorted than they needed to be.</p> <p>I haven't done a lot of testing on that code, but here are some preliminary tests:</p> <pre><code>private static void test(String s, int maxBytes, int expectedBytes) { String result = truncateWhenUTF8(s, maxBytes); byte[] utf8 = result.getBytes(Charset.forName("UTF-8")); if (utf8.length &gt; maxBytes) { System.out.println("BAD: our truncation of " + s + " was too big"); } if (utf8.length != expectedBytes) { System.out.println("BAD: expected " + expectedBytes + " got " + utf8.length); } System.out.println(s + " truncated to " + result); } public static void main(String[] args) { test("abcd", 0, 0); test("abcd", 1, 1); test("abcd", 2, 2); test("abcd", 3, 3); test("abcd", 4, 4); test("abcd", 5, 4); test("a\u0080b", 0, 0); test("a\u0080b", 1, 1); test("a\u0080b", 2, 1); test("a\u0080b", 3, 3); test("a\u0080b", 4, 4); test("a\u0080b", 5, 4); test("a\u0800b", 0, 0); test("a\u0800b", 1, 1); test("a\u0800b", 2, 1); test("a\u0800b", 3, 1); test("a\u0800b", 4, 4); test("a\u0800b", 5, 5); test("a\u0800b", 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); } </code></pre> <p><strong>Updated</strong> Modified code example, it now handles surrogate pairs.</p> http://stackoverflow.com/questions/119328/how-do-i-truncate-a-java-string-to-fit-in-a-given-number-of-bytes-once-utf-8-enc/119660#119660 2 Answer by nmihai for How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? nmihai 2008-09-23T07:47:41Z 2008-09-23T08:11:54Z <p>You can calculate the number of bytes without doing any conversion.</p> <pre><code>foreach character in the Java string if 0 &lt;= character &lt;= 0x7f count += 1 else if 0x80 &lt;= character &lt;= 0x7ff count += 2 else if 0x800 &lt;= character &lt;= 0xd7ff // excluding the surrogate area count += 3 else if 0xdc00 &lt;= character &lt;= 0xffff count += 3 else { // surrogate, a bit more complicated count += 4 skip one extra character in the input stream } </code></pre> <p>You would have to detect surrogate pairs (D800-DBFF and U+DC00–U+DFFF) and count 4 bytes for each valid surrogate pair. If you get the first value in the first range and the second in the second range, it's all ok, skip them and add 4. But if not, then it is an invalid surrogate pair. I am not sure how Java deals with that, but your algorithm will have to do right counting in that (unlikely) case.</p> http://stackoverflow.com/questions/119328/how-do-i-truncate-a-java-string-to-fit-in-a-given-number-of-bytes-once-utf-8-enc/234992#234992 0 Answer by notandy for How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded? notandy 2008-10-24T19:37:48Z 2008-10-24T19:37:48Z <p><a href="http://www.truncatedstrings.com" rel="nofollow">Truncated Strings</a></p>