我是Android的新手。
我想对特定的类对象执行强制转换JSON对象。
就像
TestClass test = (TestClass) jsonObject.
有可能吗?
答案 0 :(得分:4)
查看GSON(http://code.google.com/p/google-gson/),或自己解析JSON
答案 1 :(得分:0)
简单的施法是不可能的。您应该从JSON对象获取所有值,并使用getter和setter方法将值设置为另一个类的Object。
答案 2 :(得分:0)
请使用这个,它将解决您的问题。
http://kylewbanks.com/post/show/Tutorial-Android-Parsing-JSON-with-GSON
http://huluyige.blogspot.in/2013/02/android-code-snippetusing-gson-to-parse.html