How to convert UTF-8 to US-Ascii in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:06:34Z http://stackoverflow.com/feeds/question/285228 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java 9 How to convert UTF-8 to US-Ascii in Java Ulf Lindback 2008-11-12T20:29:03Z 2009-09-27T07:50:43Z <p>We have a system where customers, mainly European enter texts (in UTF-8) that has to be distributed to different systems, most of them accepting UTF-8, but now we must also distribute the texts to a US system which only accepts US-Ascii 7-bit</p> <p>So now we'll need to translate all European characters to the nearest US-Ascii. Is there any Java libraries to help with this task?</p> <p>Right now we've just started adding to a translation table, where Å (swedish AA)->A and so on and where we don't find any match for an entered character, we'll log it and replace with a question mark and try and fix that for the next release, but it seems very inefficient and somebody else must have done something similair before.</p> http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java/285247#285247 0 Answer by sblundy for How to convert UTF-8 to US-Ascii in Java sblundy 2008-11-12T20:34:09Z 2008-11-12T20:44:18Z <p>There are some built in functions to do this. The main class involved is <a href="http://java.sun.com/javase/6/docs/api/java/nio/charset/CharsetEncoder.html" rel="nofollow"><code>CharsetEncoder</code></a>, which is part of the <code>nio</code> package. A simpler way is <a href="http://java.sun.com/javase/6/docs/api/java/lang/String.html#getBytes(java.nio.charset.Charset)" rel="nofollow"><code>String.getBytes(Charset)</code></a> that can be sent to a <a href="http://java.sun.com/javase/6/docs/api/java/io/ByteArrayOutputStream.html" rel="nofollow"><code>ByteArrayOutputStream</code></a>.</p> http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java/285293#285293 10 Answer by Jouni K. Seppänen for How to convert UTF-8 to US-Ascii in Java Jouni K. Seppänen 2008-11-12T20:44:26Z 2008-11-12T20:44:26Z <p>The <a href="http://billposer.org/Software/uni2ascii.html" rel="nofollow">uni2ascii</a> program is written in C, but you could probably convert it to Java with little effort. It contains a large table of approximations (implicitly, in the switch-case statements).</p> <p>Be aware that there are no universally accepted approximations: Germans want you to replace Ä by AE, Finns and Swedes prefer just A. Your example of <a href="http://en.wikipedia.org/wiki/%C3%85" rel="nofollow">Å</a> isn't obvious either: Swedes would probably just drop the ring and use A, but Danes and Norwegians might like the historically more correct AA better.</p> http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java/285791#285791 5 Answer by CesarB for How to convert UTF-8 to US-Ascii in Java CesarB 2008-11-12T23:24:45Z 2008-11-12T23:24:45Z <p>Instead of creating your own table, you could instead convert the text to normalization form D, where the characters are represented as a base character plus the diacritics (for instance, "á" will be replaced by "a" followed by a combining acute accent). You can then strip everything which is not an ASCII letter.</p> <p>The tables still exist, but are now the ones from the Unicode standard.</p> <p>You could also try NFKD instead of NFD, to catch even more cases.</p> <p>References:</p> <ul> <li><a href="http://unicode.org/reports/tr15/" rel="nofollow">http://unicode.org/reports/tr15/</a></li> <li><a href="http://blogs.msdn.com/michkap/archive/2005/02/19/376617.aspx" rel="nofollow">http://blogs.msdn.com/michkap/archive/2005/02/19/376617.aspx</a></li> <li><a href="http://blogs.msdn.com/michkap/archive/2007/05/14/2629747.aspx" rel="nofollow">http://blogs.msdn.com/michkap/archive/2007/05/14/2629747.aspx</a></li> </ul> http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java/285890#285890 0 Answer by Joe Liversedge for How to convert UTF-8 to US-Ascii in Java Joe Liversedge 2008-11-13T00:09:40Z 2008-11-13T00:09:40Z <p>This is typically useful in search applications. See the corresponding Lucene <a href="http://lucene.apache.org/java/2_2_0/api/index.html?org/apache/lucene/analysis/ISOLatin1AccentFilter.html" rel="nofollow">ISOLatin1AccentFilter</a> implementation. This isn't really designed for plugging into a random local implementation, but does the trick.</p> http://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java/1483057#1483057 0 Answer by Rob for How to convert UTF-8 to US-Ascii in Java Rob 2009-09-27T07:50:43Z 2009-09-27T07:50:43Z <p>This is what seems to work:</p> <p>private synchronized static String utftoasci(String s){ final StringBuffer sb = new StringBuffer( s.length() * 2 );</p> <p>final StringCharacterIterator iterator = new StringCharacterIterator( s );</p> <p>char ch = iterator.current();</p> <p>while( ch != StringCharacterIterator.DONE ){ if(Character.getNumericValue(ch)>0){ sb.append( ch ); }else{ boolean f=false; if(Character.toString(ch).equals("Ê")){sb.append("E");f=true;} if(Character.toString(ch).equals("È")){sb.append("E");f=true;} if(Character.toString(ch).equals("ë")){sb.append("e");f=true;} if(Character.toString(ch).equals("é")){sb.append("e");f=true;} if(Character.toString(ch).equals("è")){sb.append("e");f=true;} if(Character.toString(ch).equals("è")){sb.append("e");f=true;} if(Character.toString(ch).equals("Â")){sb.append("A");f=true;} if(Character.toString(ch).equals("ä")){sb.append("a");f=true;} if(Character.toString(ch).equals("ß")){sb.append("ss");f=true;} if(Character.toString(ch).equals("Ç")){sb.append("C");f=true;} if(Character.toString(ch).equals("Ö")){sb.append("O");f=true;} if(Character.toString(ch).equals("º")){sb.append("");f=true;} if(Character.toString(ch).equals("Ó")){sb.append("O");f=true;} if(Character.toString(ch).equals("ª")){sb.append("");f=true;} if(Character.toString(ch).equals("º")){sb.append("");f=true;} if(Character.toString(ch).equals("Ñ")){sb.append("N");f=true;} if(Character.toString(ch).equals("É")){sb.append("E");f=true;} if(Character.toString(ch).equals("Ä")){sb.append("A");f=true;} if(Character.toString(ch).equals("Å")){sb.append("A");f=true;} if(Character.toString(ch).equals("ä")){sb.append("a");f=true;} if(Character.toString(ch).equals("Ü")){sb.append("U");f=true;} if(Character.toString(ch).equals("ö")){sb.append("o");f=true;} if(Character.toString(ch).equals("ü")){sb.append("u");f=true;} if(Character.toString(ch).equals("á")){sb.append("a");f=true;} if(Character.toString(ch).equals("Ó")){sb.append("O");f=true;} if(Character.toString(ch).equals("É")){sb.append("E");f=true;} if(!f){ sb.append("?"); } } ch = iterator.next(); } return sb.toString(); }</p>