11 2022 档案

摘要:@Data public class xxxQuery{ //字符串转Date @DateTimeFormat(pattern = "<dateformate>") private Date date; } @Data public class xxxVO{ //Date转字符串 @JsonForm 阅读全文
posted @ 2022-11-06 20:22 junlu 阅读(631) 评论(0) 推荐(0)
摘要:gb2312字符集,字符码表分成94个区,每个区里有94个位,每位对应一个字符。 常用汉字范围,区:16-55,位:1-94 gb2312由两个字节组成一个字符,区对应高字节,位对应低字节,字节的值等于区/位号+0xA0 例如:啊,区16,位01 byte[] bytes = new byte[2] 阅读全文
posted @ 2022-11-05 17:58 junlu 阅读(1117) 评论(0) 推荐(0)