Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
254 views
in Technique[技术] by (71.8m points)

java - Hot to parse Google protobuf `value` type object?

Google Directory API java library (com.google.apis: google-api-services-admin-directory) returns phones,notes,websites... fields which are protobuf value type as java.lang.Object backed by List<ArrayMap<String, Object>> instance. example user.getEmails().toString():

[
  {
    [email protected],
    type=custom,
    customType=
  },
  {
    [email protected],
    primary=true
  }
]

What is handy / proper way or library to parse this kind of Object?

PS org.springframework.boot.json.GsonJsonParser. can't do it:

com.google.gson.stream.MalformedJsonException: Expected value at line 1 column 55 path $[0].customType

UPDATE

Similar question has already been answered. Solution is the same.

question from:https://stackoverflow.com/questions/65904577/hot-to-parse-google-protobuf-value-type-object

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...