protobuf 生成的类 转 json字符串

x33g5p2x  于9个月前 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(361)

背景

项目中rpc接口定义的类是使用protobuf定义的,然后会自动生成对应的类,但是打印的时候会换行,所以看看怎么解决这个问题

例子

  1. public static void main(String[] args) {
  2. Test test = Test.newBuilder().setA("a").setB("b").setC("c").build();
  3. System.out.println(test);
  4. }
  5. 输出:
  6. a: "a"
  7. b: "b"
  8. c: "c"

可以看到有换行

方案

  1. <!--protobuf与json互转-->
  2. <dependency>
  3. <groupId>com.google.protobuf</groupId>
  4. <artifactId>protobuf-java-util</artifactId>
  5. <version>3.23.1</version>
  6. </dependency>
  7. public static String writeValueAsString(MessageOrBuilder message) {
  8. try {
  9. return JsonFormat.printer()
  10. .omittingInsignificantWhitespace() //去掉换行
  11. .print(message);
  12. } catch (Exception e) {
  13. log.error("print error, message={}, msg={}", message, e.getMessage(), e);
  14. }
  15. return StringUtils.EMPTY;
  16. }
  17. public static void main(String[] args) {
  18. Test test = Test.newBuilder().setA("a").setB("b").setC("c").build();
  19. System.out.println(writeValueAsString(test));
  20. }
  21. 输出:
  22. {"a":"a","b":"b","c":"c"}

相关文章