-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathUtf8Validation.java
31 lines (29 loc) · 951 Bytes
/
Utf8Validation.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.dbc;
public class Utf8Validation {
public boolean validUtf8(int[] data) {
int count = 0;
for (int item : data) {
String uni = "00000000" + Integer.toString(item, 2);
uni = uni.substring(uni.length() - 8);
if (count != 0 && !uni.startsWith("10")) {
return false;
} else if (count != 0 && uni.startsWith("10")) {
count--;
} else if (count == 0 && uni.startsWith("10")) {
return false;
} else if (count == 0 && uni.startsWith("11")) {
count = 1;
for (int i = 2; i < 8; i++) {
if (uni.charAt(i) == '0') {
break;
}
count++;
}
if (count > 3) {
return false;
}
}
}
return count == 0;
}
}