J'ai rencontré le même problème lié à la vérification de l'égalité des chaînes, l'une des chaînes de comparaison a
le code de caractère ASCII 128-255 .
ie, Espace insécable - [Hex - A0] Espace [Hex - 20]. Pour afficher l'espace insécable sur HTML. J'ai utilisé ce qui suit spacing entities
. Leur caractère et ses octets sont comme&emsp is very wide space[ ]{-30, -128, -125}, &ensp is somewhat wide space[ ]{-30, -128, -126}, &thinsp is narrow space[ ]{32} , Non HTML Space {}
String s1 = "My Sample Space Data", s2 = "My Sample Space Data";
System.out.format("S1: %s\n", java.util.Arrays.toString(s1.getBytes()));
System.out.format("S2: %s\n", java.util.Arrays.toString(s2.getBytes()));
Sortie en octets:
S1: [77, 121,, 32
83, 97, 109, 112, 108, 101,, 32
83, 112, 97, 99, 101,, 32
68, 97, 116, 97]
S2: [77, 121,, -30, -128, -125
83, 97, 109, 112, 108, 101,, -30, -128, -125
83, 112, 97, 99, 101,, -30, -128, -125
68, 97, 116, 97]
Utilisez le code ci-dessous pour différents espaces et leurs codes d'octets: wiki for List_of_Unicode_characters
String spacing_entities = "very wide space,narrow space,regular space,invisible separator";
System.out.println("Space String :"+ spacing_entities);
byte[] byteArray =
// spacing_entities.getBytes( Charset.forName("UTF-8") );
// Charset.forName("UTF-8").encode( s2 ).array();
{-30, -128, -125, 44, -30, -128, -126, 44, 32, 44, -62, -96};
System.out.println("Bytes:"+ Arrays.toString( byteArray ) );
try {
System.out.format("Bytes to String[%S] \n ", new String(byteArray, "UTF-8"));
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
Transl Translittérations ASCII de la chaîne Unicode pour Java. unidecode
String initials = Unidecode.decode( s2 );
➩ en utilisant Guava
: Google Core Libraries for Java
.
String replaceFrom = CharMatcher.WHITESPACE.replaceFrom( s2, " " );
Pour le codage d'URL pour l'espace, utilisez la bibliothèque de goyaves.
String encodedString = UrlEscapers.urlFragmentEscaper().escape(inputString);
➩ Pour surmonter ce problème utilisé String.replaceAll()
avec certains RegularExpression
.
// \p{Z} or \p{Separator}: any kind of whitespace or invisible separator.
s2 = s2.replaceAll("\\p{Zs}", " ");
s2 = s2.replaceAll("[^\\p{ASCII}]", " ");
s2 = s2.replaceAll(" ", " ");
➩ Utilisation de java.text.Normalizer.Form . Cette énumération fournit des constantes des quatre formulaires de normalisation Unicode qui sont décrits dans l' Annexe 15 de la norme Unicode - Formulaires de normalisation Unicode et deux méthodes pour y accéder.
s2 = Normalizer.normalize(s2, Normalizer.Form.NFKC);
Test de String et de sorties sur différentes approches comme ➩ Unidecode, Normalizer, StringUtils .
String strUni = "Tĥïŝ ĩš â fůňķŷ Šťŕĭńġ Æ,Ø,Ð,ß";
// This is a funky String AE,O,D,ss
String initials = Unidecode.decode( strUni );
// Following Produce this o/p: Tĥïŝ ĩš â fůňķŷ Šťŕĭńġ Æ,Ø,Ð,ß
String temp = Normalizer.normalize(strUni, Normalizer.Form.NFD);
Pattern pattern = Pattern.compile("\\p{InCombiningDiacriticalMarks}+");
temp = pattern.matcher(temp).replaceAll("");
String input = org.apache.commons.lang3.StringUtils.stripAccents( strUni );
Utiliser Unidecode est le best choice
, Mon code final illustré ci-dessous.
public static void main(String[] args) {
String s1 = "My Sample Space Data", s2 = "My Sample Space Data";
String initials = Unidecode.decode( s2 );
if( s1.equals(s2)) { //[ , ] %A0 - %2C - %20 « http://www.ascii-code.com/
System.out.println("Equal Unicode Strings");
} else if( s1.equals( initials ) ) {
System.out.println("Equal Non Unicode Strings");
} else {
System.out.println("Not Equal");
}
}