摘要: /** * 字节流排序低字节在前高字节在后 * @param count * @return */ public static String Lowhigh(Integer count){ // 分别取出int的高字节跟低字节 int big = (count & 0xFF00) >> 8; int 阅读全文
posted @ 2022-03-07 15:44 Ucaen 阅读(152) 评论(0) 推荐(0)