How to convert UTF-8 to US-Ascii in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:06:34Zhttp://stackoverflow.com/feeds/question/285228http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/285228/how-to-convert-utf-8-to-us-ascii-in-java9How to convert UTF-8 to US-Ascii in JavaUlf Lindback2008-11-12T20:29:03Z2009-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#2852470Answer by sblundy for How to convert UTF-8 to US-Ascii in Javasblundy2008-11-12T20:34:09Z2008-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#28529310Answer by Jouni K. Seppänen for How to convert UTF-8 to US-Ascii in JavaJouni K. Seppänen2008-11-12T20:44:26Z2008-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#2857915Answer by CesarB for How to convert UTF-8 to US-Ascii in JavaCesarB2008-11-12T23:24:45Z2008-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#2858900Answer by Joe Liversedge for How to convert UTF-8 to US-Ascii in JavaJoe Liversedge2008-11-13T00:09:40Z2008-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#14830570Answer by Rob for How to convert UTF-8 to US-Ascii in JavaRob2009-09-27T07:50:43Z2009-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>