功能概要 1.字节转文本:字节集转成文本型(ByteToString),不以\0结束,逐字转换。 2.字节转数值:Verint64 .4-10字节转换(ByteToint),以数组1开始 3.字节集转16进制:(ByteToHex) 4.16进制转字节集:(HexToByte) 5.16进制转文本:(HexToString) 6.去空:去掉空白字符 7.JSON解析:没有介绍,解析值出来。 8.文本转字节:文本型转成字节集(StringToByte)。 9.取数据HEX:正则匹配16进制。 10.反序列化:Protocol buffers 反序列化 需要转换到16进制 11.RSA验签与签名
1
findbugs-1.3.9.tar.gz + protobuf-2.5.0.tar.gz +snappy-1.1.1.tar.
2022-07-06 09:01:31 11MB findbugs
1
google是头文件,里面有32和64位相关静态库的debug和release版本以及编译proto文件的protoc.exe,运行时库是MD和MDd,官方默认是MT和MTd
2022-06-25 11:45:20 25.52MB protobuf
1
protobuf 初学者,可以多看看
2022-06-22 17:09:06 123KB protobuf
1
走eclipse的商店或者更新只能下载的最新版本的插件,有些依赖必须老版本的。
2022-06-14 21:40:47 40.43MB eclipse protobuf 插件
1
using System; //需要用到MemoryStream using System.IO; using UnityEngine; //引入ProtoBuf命名空间 using ProtoBuf; /// /// 测试类 /// public class TestProtobuf : MonoBehaviour { /// /// 用于测试的数据类 /// [ProtoContract] //声明这个类能被序列化 public class UserData { //声明每一个需要被序列化的成员,编号从1开始 [ProtoMember(1)] public int id; [ProtoMember(2)] public string name; [ProtoMember(3)] public int level; } //测试代码 void Start() { //将要被序列化的UserData示例 UserData user1 = new UserData (); user1.id = 1; user1.name = "User1"; user1.level = 10; //打印user1 Debug.Log (string.Format ("user1-> id:{0}, name:{1}, level:{2}", user1.id, user1.name, user1.level)); //序列化 byte[] buff = null; using (MemoryStream ms = new MemoryStream ()) { Serializer.Serialize (ms, user1); ms.Position = 0; int length = (int)ms.Length; buff = new byte[length]; ms.Read (buff, 0, length); } //输出字节数组 Debug.Log (string.Format("Serialized data-> {0}", BitConverter.ToString(buff))); //反序列化 UserData user2 = default(UserData); using (MemoryStream ms = new MemoryStream (buff)) { user2 = Serializer.Deserialize (ms); } //打印反序列化生成的user2 Debug.Log (string.Format ("user2-> id:{0}, name:{1}, level:{2}", user2.id, user2.name, user2.level)); } } 作者:qufangliu 链接:https://www.jianshu.com/p/d9be1b3d2446 來源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
2022-06-13 11:25:35 226KB Protobuf-net
1
ubuntu环境 安装opencv4 https://blog.csdn.net/qq_37373742/article/details/124997002?spm=1001.2014.3001.5502 ubuntu环境 安装ncnn https://blog.csdn.net/qq_37373742/article/details/125218908
2022-06-10 18:07:32 308.99MB ncnn opencv protobuf
1
mina和protobuf整合教程,mina不像nety自带protobuf整合,这个教程叙述了mina和protbuf的整合。
2022-05-27 17:13:03 16KB protobuf mina java
1
google protobuf-2.6.1.zip
2022-05-27 16:05:52 1.76MB 综合资源 protobuf
1
利用 google protobuf 3.5 将结构化的数据序列化、反序列化应用例子。
2022-05-25 11:22:09 1.17MB Protobuf
1