我正在尝试为Android完成货币转换器应用程序,我正在使用Google货币转换器通过发送带有此表单的网址来执行此操作:
http://www.google.com/ig/calculator?q="amount""from currency code"=?"to currency code"
示例: -
http://www.google.com/ig/calculator?q=10USD=?EGP
和示例的输出将是:
{lhs: "10 U.S. dollars",rhs: "59.701849 Egyptian pounds",error: "",icc: true}
我想要做的是在TextView中显示(这将显示用户的最终结果)只有这样: -
59.701849 Egyptian pounds
所以任何想法都会有所帮助,并感谢您的帮助......
答案 0 :(得分:2)
这是一个JSON字符串。使用JSONObject
班级http://developer.android.com/reference/org/json/JSONObject.html
JSONObject obj = new JSONObject(outputString);
String rhs = obj.getString("rhs");