Android:如何翻译“http://www.google.com/ig/api?weather="+cityName xml以获取其他语言的天气?

时间:2012-03-08 11:08:04

标签: android xml-parsing weather

我无法用其他语言来翻译有关天气的信息。

如果我更改了网址

"http://www.google.com/ig/api?weather="+cityName

"http://www.google.com/ig/api?hl=it&weather="+cityName

以意大利语阅读信息我收到以下错误:

org.apache.harmony.xml.ExpatParser$ParseException: At line 1, column 537: not well-formed (invalid token)

我不明白为什么......令牌和节点等同于英语(尝试两个网址)。

我使用的代码在这里 - > http://www.anddev.org/viewtopic.php?t=361

非常感谢...

1 个答案:

答案 0 :(得分:0)

你需要更换“&”为“& amp,”

像这样:

queryString.replace("&", "&amp,");


, = ;