Я пытаюсь разобрать XML из этого URLметоды XMLPullParser не работает
http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quote%20where%20symbol%20in%20(%22MSFT%22)&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys
и при использовании методов getName()
, и все это дает значение null
. Ниже приведен код, который находится в теме, не могли бы вы рассказать мне, где ошибка.
@Override
protected String doInBackground(String... arg0) {
// TODO Auto-generated method stub
String urlString = arg0[0];
String text = null;
InputStream is = null;
//String tagName = null;
int count = 0;
try {
URL url = new URL(urlString);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setReadTimeout(10*1000);
connection.setConnectTimeout(10*1000);
connection.setRequestMethod("GET");
connection.setDoInput(true);
connection.connect();
int response = connection.getResponseCode();
Log.d("debug", "the response is"+response);
is = new BufferedInputStream(connection.getInputStream());
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setNamespaceAware(true);
XmlPullParser xpp = factory.newPullParser();
xpp.setInput(is, null);
int eventType = xpp.getEventType();
Log.d("kchayar", is+"");
while(eventType != XmlPullParser.END_DOCUMENT){
String tagName = xpp.getName();
if(eventType == XmlPullParser.START_TAG){
// if(tagName.equals("Change")){
// text = xpp.nextText();
count ++;
// }
}
if(eventType == XmlPullParser.TEXT){
// if(tagName.equals("Change")){
text = xpp.nextText();
count ++;
//}
}
eventType = xpp.next();
}
} catch (XmlPullParserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(String result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
wv.setText(result);
}
}
http://developer.android.com/training/basics/network-ops /xml.html. следуйте примеру – Raghunandan
, также нет строки, возвращаемой в 'doInbackground'. вы возвращаете 'null' – Raghunandan
Если я верну текст переменной и использую его в onPostExecute, ничего нет – theanilpaudel