网络

1.   RSS:

a.   使用HttpURLConnection连接目标RSS的URL

URL url = new URL(strRssURL);

HttpURLConnection localHttpURLConnection = (HttpURLConnection) url.openConnection();

localHttpURLConnection.connect();

b.  得到RSS的输入流(RSS的描述XML):

InputStream localInputStream = localHttpURLConnection.getInputStream();

c. 使用SAXParser解析RSS,解析的过程中不断把解析到的数据填充到存储RSS内容的数

据结构中

d. 如果rss需要通过list展现,把rss中的内容通过adapter显示到list控件中

2.   

你可能感兴趣的:(数据结构,xml,list,rss,url,存储)