I wrote a program to generate a random utf-8 string, but there are some messy chars. I don't know if my code is wrong or some chars are invisible, how can it strip these messy chars(but I want to keep the chinese, korean, japanese, symbols and so on)?
There is the code:
private byte randomByteInRange(int min, int max) {
return (byte) (min + rand.nextInt(max - min));
}
private String randomUtf8String(int length) throws UnsupportedEncodingException {
int j = 0;
byte[] bytes = new byte[6 * length];
for (int i = 0; i < length; ++i) {
int mod = i % 3;
if (0 == mod) { // 0xxxxxxx, visible char: 0x20 ~ 0x80
bytes[j++] = randomByteInRange(0x20, 0x80);
}
if (1 == mod) { // 110xxxxx 10xxxxxx
bytes[j++] = randomByteInRange(0xc0, 0xdf);
bytes[j++] = randomByteInRange(0x80, 0xbf);
}
if (2 == mod) { // 1110xxxx 10xxxxxx 10xxxxxx
bytes[j++] = randomByteInRange(0xe0, 0xef);
bytes[j++] = randomByteInRange(0x80, 0xbf);
bytes[j++] = randomByteInRange(0x80, 0xbf);
}
}
return new String(bytes, 0, j, "UTF-8").replaceAll("\\p{C}+", "");
}
there is my output:
kѷ㱾U拌w��Ꙙ@
Stringfrom that method, not bytes, so it's irrelevant what bytes you use to construct it. – artbristol Aug 2 '12 at 10:14