java技巧

java如何将unicode的char转换为bytes即对应于C++中的char

private boolean is_halfshaped(char uchar){

    byte[] bytes = new byte[0];
    try {
        bytes = String.valueOf(uchar).getBytes("GBK");
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }
    for (int i = 0; i < bytes.length; i++) {
        byte b = bytes[i];
        char c = (char)(b & 0xff);

        if (c == 0x0020) { // 空格
            return true;
        }
        if (c >= 0x21 && c <= 0x7e) { // 是半角字符
            return true;
        }
    }

    return false;
}

java中如何快速将整形数字的某一位(对应二进制)修改为0或者1

int set_bit(int int_type, int offset) {
        int mask = 1 << offset;
        return int_type | mask;
    }




你可能感兴趣的:(java)