Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用gson解析twitter的json,
他们的架构包括一个名为“受保护”的变量。由于显而易见的原因,我无法创建一个名为 protected 的变量......
我的决议是对“受保护”进行替换:使用“bProtected”之类的东西:
谁能想到更好的解决方案?
在 GSON 中,您可以使用@SerializedName技巧:
@SerializedName
class SomeYourDeserializationClass { ... @SerializedName("protected") public String myProtected; ... }