用于将形如"0x1A"的string转成BYTE类型 代码如下, 有问题欢迎指出 1 bool str2byte(const std::string &str, BYTE &bRet) 2 { 3 bRet = 0x00; //结果 4 size_t iPos = 1; //位 5 size_t p ...
分类:
编程语言 时间:
2020-02-12 18:24:01
阅读次数:
513
public static String converByteToString(byte[] data) {
ByteArrayInputStream byteInput = null;
GZIPInputStream gzin = null;
ByteArrayOutputStream byteOutput = null;
String data = null;
byte[]...
分类:
其他好文 时间:
2014-08-27 16:38:08
阅读次数:
142