步骤
导入protobuf-java-format包
1
2
3
4
5<dependency>
<groupId>com.googlecode.protobuf-java-format</groupId>
<artifactId>protobuf-java-format</artifactId>
<version>1.4</version>
</dependency>主要代码
1
2
3
4
5
6
7
8JsonFormat jsonFormat = new JsonFormat();
// protobuf转json
System.out.println(jsonFormat.printToString(request_2_0));
AiQiYV215Rta.RTARequest_2_0.Builder builder = AiQiYV215Rta.RTARequest_2_0.newBuilder();
// json转protobuf对象
jsonFormat.merge(IoUtil.toUtf8Stream(json), builder);
System.out.println(builder.getIdfaMd5());