google的protobuf對象轉json,不能直接使用FastJson之類的工具進行轉換,原因是protobuf生成對象的get方法,返回的類型有byte[],而只有String類型可以作為json的key。google有提供專門的架包,方便protobuf與json之間相互轉換。方法如下:
1、添加轉換用的maven依賴:
1 <dependency> 2 <groupId>com.googlecode.protobuf-java-format</groupId> 3 <artifactId>protobuf-java-format</artifactId> 4 <version>1.2</version> 5 </dependency>
2、protobuf轉json的方法
1 // protobuf 轉 json 2 Message.Builder message = Message.newBuilder(); 3 String json = JsonFormat.printToString(message.build());
3、json轉protobuf的方法
1 //json 轉 protobuf 2 try { 3 JsonFormat.merge(json, message); 4 } catch (ParseException e) { 5 e.printStackTrace(); 6 }
