Java (internally) always encodes a String in UTF-16 independent of its content. http://docs.oracle.com/javase/6/docs/api/java/lang/String.html
You can convert it to any supported encoding, including ASCII and UTF-8, but may lose characters that are not displayable in the selected encoding.
Depending on why you check, you could convert the string to ASCII and read it back into a java String and see if they match. If they do, ASCII suffices for storing your string. This would be the most obvious check for later readers of your source code.
You can also compare the unicode codepoint of every character against 128, if they are all <= 127 the string is ASCII compatible, i.e. does certainly not contain arabic. To get the unicode codepoint for a character of your string use str.codePointAt(index).
If you explicitly want to find arabic text you should explicitly check for arabic characters. Otherwise you could get false positives for french, german or many other languages that use accented characters. Fortunately the Unicode consortium associates blocks per language, so that the check likely boils down to cp >= beginningOfUnicodeBlock && cp <= endOfUnicodeBlock.
Edit, hinted by tchrist: There are java.lang.Character.UnicodeBlock and java.lang.Character.UnicodeScript. The latter was added in Java 7. Both can be used to classify unicode code points.
int cp = str.codePointAt(index);
if (UnicodeScript.ARABIC.equals(UnicodeScript.of(cp)) {
// arabic character found
}
> 128is not UTF-8 specific. It just means non-ASCII. Is "non-ASCII" what you're trying to test for? – Matt Ball Mar 22 '12 at 15:38Stringin UTF-8 encoding in Java. Strings are always UTF-16 there. – Јοеу Mar 22 '12 at 16:06