新しいスレッド(以下に示すように、runnableを実装するクラス)でrssフィードを取得しています。rssフィードから取得した文字列を使用して、メインクラスに返します。メインクラスは単純にそのようにスレッドを実行します
new Thread(new RssParse()).start();
xmlから切り出されたこれらの文字列をメインクラスに返す方法を見つけるのに非常に苦労しています。どんな助けでもありがたいです。
public class RssParse implements Runnable {
private static final String MY_DEBUG_TAG = "pfaff";
public void run(){
System.out.println("1");
URL iotd;
try{
iotd = new URL("http://www.nasa.gov/rss/image_of_the_day.rss");//set URl
BufferedReader in;//new BufferedReader
in = new BufferedReader(new InputStreamReader(iotd.openStream()));//get rss
XmlPullParserFactory factory;
factory = XmlPullParserFactory.newInstance();//new factory
factory.setNamespaceAware(true);
XmlPullParser xpp;
xpp = factory.newPullParser();
xpp.setInput(in);
int eventType;
eventType = xpp.getEventType();
System.out.println(eventType+"!!!!!!!!!!!!!!!!");
while(eventType!=XmlPullParser.END_DOCUMENT){
switch(eventType){
case XmlPullParser.START_DOCUMENT:
break;
case XmlPullParser.START_TAG:
String tagName=xpp.getName();
System.out.println(tagName+" "+xpp.getDepth());
if(tagName.equals("title")&& xpp.getDepth()==4){//depth is specific to this certain rss feed, there are multiple tags with the same names
String title=xpp.nextText();// I want to return title and a few other strings but can't figure out how to do this when dealing with threads.
System.out.println(title);
}
break;
}
eventType=xpp.next();
}//switch
in.close();//close BufferedReader
} catch (MalformedURLException e){
e.printStackTrace();
}catch(XmlPullParserException e1){
e1.printStackTrace();
}catch(IOException e2){
e2.printStackTrace();
}
}//method
}//class