摘要: 1 //byte[]转hex字符串 2 public static String bytes2HexString(byte[] array) { 3 StringBuilder builder = new StringBuilder(); 4 5 for (byte b : array) { 6 S 阅读全文
posted @ 2020-01-10 17:45 Yan327 阅读(5284) 评论(0) 推荐(0) 编辑
摘要: 1 // CallBack.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <stdio.h> 6 #include <string> 7 #include <iostream> 8 9 using namespace std 阅读全文
posted @ 2020-01-10 17:13 Yan327 阅读(140) 评论(0) 推荐(0) 编辑