Android 简明教程
Android - RSS Reader
RSS 全称为 Really Simple Syndication(真正简单的联合)。RSS 是一种简单的与用户分享网站更新及内容的方式,故而用户可能无需每天都访问你的网站以了解更新信息。
RSS Example
RSS 是一个由网站创建的扩展名为 .xml 的文档。你可以轻松地解析该文档,并将其在你的应用程序中显示给用户。RSS 文档如下所示。
<rss version="2.0">
<channel>
<title>Sample RSS</title>
<link>http://www.google.com</link>
<description>World's best search engine</description>
</channel>
</rss>
RSS Elements
如上所示的 RSS 文档包含以下元素。
Sr.No |
Component & description |
1 |
channel 该元素用来描述 RSS 源 |
2 |
title 定义频道的标题 |
3 |
link 定义通向频道的超链接 |
4 |
description Describes the channel |
Parsing RSS
解析 RSS 文档更像是解析 XML。现在让我们看看如何解析 XML 文档。
为此,我们将创建 XMLPullParser 对象,但为了创建它,我们首先将创建 XmlPullParserFactory 对象,然后调用其 newPullParser() 方法创建 XMLPullParser。其语法如下:
private XmlPullParserFactory xmlFactoryObject = XmlPullParserFactory.newInstance();
private XmlPullParser myparser = xmlFactoryObject.newPullParser();
下一步涉及为包含 XML 的 XmlPullParser 指定文件。该文件可以是文件或可以是流。在本例中,它是一个流。其语法如下所示−
myparser.setInput(stream, null);
最后一步是解析 XML。XML 文件由事件、名称、文本、属性值等组成。因此,XMLPullParser 有一个独立的功能用于解析 XML 文件的每个组件。其语法如下:
int event = myParser.getEventType();
while (event != XmlPullParser.END_DOCUMENT) {
String name=myParser.getName();
switch (event){
case XmlPullParser.START_TAG:
break;
case XmlPullParser.END_TAG:
if(name.equals("temperature")){
temperature = myParser.getAttributeValue(null,"value");
}
break;
}
event = myParser.next();
}
此方法返回发生的事件类型。例如:文档开始、标签开始等。该方法返回标签名称,并且因为我们仅对温度感兴趣,所以我们在条件语句中只检查是否获取了温度标签,我们调用该方法返回温度标签的值。
除了这些方法之外,此类还提供了其他用于更好地分析 XML 文件的方法。这些方法如下所列−
Sr.No |
Method & description |
1 |
此方法仅返回当前开始标签的属性数。 |
2 |
getAttributeName(int index) 此方法返回由索引值指定的属性的名称。 |
3 |
getColumnNumber() 此方法返回从 0 开始的当前列号。 |
4 |
getDepth() 此方法返回当前元素的深度。 |
5 |
getLineNumber() 返回从 1 开始的当前行号。 |
6 |
getNamespace() 此方法返回当前元素的名称空间 URI。 |
7 |
getPrefix() 此方法返回当前元素的前缀。 |
8 |
getName() 此方法返回标签的名称。 |
9 |
getText() 此方法返回特定元素的文本。 |
10 |
isWhitespace() 此方法检查当前 TEXT 事件是否仅包含空白字符。 |
Example
以下演示使用 XMLPullParser 类。它创建了一个基本解析应用程序,该应用程序允许您解析此处 /android/sampleXML.xml 中存在的 RSS 文档,然后显示结果。
要试验此示例,您可以在实际设备或模拟器上运行它。
Steps |
Description |
1 |
你将使用 Android Studio 在包 com.example.sairamkrishna.myapplication 下创建 Android 应用程序。 |
2 |
修改 src/MainActivity.java 文件以添加必要的代码。 |
3 |
修改 res/layout/activity_main 以添加相应的 XML 组件。 |
4 |
在 src/HandleXML.java 下创建一个新的 java 文件来获取和解析 XML 数据。 |
5 |
在 src/second.java 下创建一个新的 java 文件来显示 XML 的结果 |
5 |
修改 AndroidManifest.xml 以添加必要的 Internet 权限。 |
6 |
运行该应用程序,选择一个正在运行的安卓设备,并在该设备上安装应用程序并验证结果。 |
以下是修改的主活动文件 src/MainActivity.java 的内容。
package com.example.sairamkrishna.myapplication;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity {
EditText title,link,description;
Button b1,b2;
private String finalUrl="https://www.tutorialspoint.com/android/sampleXML.xml";
private HandleXML obj;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
title = (EditText) findViewById(R.id.editText);
link = (EditText) findViewById(R.id.editText2);
description = (EditText) findViewById(R.id.editText3);
b1=(Button)findViewById(R.id.button);
b2=(Button)findViewById(R.id.button2);
b1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
obj = new HandleXML(finalUrl);
obj.fetchXML();
while(obj.parsingComplete);
title.setText(obj.getTitle());
link.setText(obj.getLink());
description.setText(obj.getDescription());
}
});
b2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent in=new Intent(MainActivity.this,second.class);
startActivity(in);
}
});
}
}
以下是 java 文件 src/HandleXML.java 的内容。
package com.example.rssreader;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import org.xmlpull.v1.XmlPullParser;
import org.xmlpull.v1.XmlPullParserFactory;
import android.util.Log;
public class HandleXML {
private String title = "title";
private String link = "link";
private String description = "description";
private String urlString = null;
private XmlPullParserFactory xmlFactoryObject;
public volatile boolean parsingComplete = true;
public HandleXML(String url){
this.urlString = url;
}
public String getTitle(){
return title;
}
public String getLink(){
return link;
}
public String getDescription(){
return description;
}
public void parseXMLAndStoreIt(XmlPullParser myParser) {
int event;
String text=null;
try {
event = myParser.getEventType();
while (event != XmlPullParser.END_DOCUMENT) {
String name=myParser.getName();
switch (event){
case XmlPullParser.START_TAG:
break;
case XmlPullParser.TEXT:
text = myParser.getText();
break;
case XmlPullParser.END_TAG:
if(name.equals("title")){
title = text;
}
else if(name.equals("link")){
link = text;
}
else if(name.equals("description")){
description = text;
}
else{
}
break;
}
event = myParser.next();
}
parsingComplete = false;
}
catch (Exception e) {
e.printStackTrace();
}
}
public void fetchXML(){
Thread thread = new Thread(new Runnable(){
@Override
public void run() {
try {
URL url = new URL(urlString);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setReadTimeout(10000 /* milliseconds */);
conn.setConnectTimeout(15000 /* milliseconds */);
conn.setRequestMethod("GET");
conn.setDoInput(true);
// Starts the query
conn.connect();
InputStream stream = conn.getInputStream();
xmlFactoryObject = XmlPullParserFactory.newInstance();
XmlPullParser myparser = xmlFactoryObject.newPullParser();
myparser.setFeature(XmlPullParser.FEATURE_PROCESS_NAMESPACES, false);
myparser.setInput(stream, null);
parseXMLAndStoreIt(myparser);
stream.close();
}
catch (Exception e) {
}
}
});
thread.start();
}
}
在 java/second.java 下创建一个文件并将其命名为 second.java 文件
package com.example.sairamkrishna.myapplication;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class second extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.second_activity);
WebView w1=(WebView)findViewById(R.id.webView);
w1.loadUrl("https://www.tutorialspoint.com/android/sampleXML.xml");
}
}
在 res/layout/second_activity.xml 创建一个 xml 文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webView"
android:layout_gravity="center_horizontal" />
</LinearLayout>
将 res/layout/activity_main.xml 的内容修改为以下内容:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:transitionGroup="true">
<TextView android:text="RSS example" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textview"
android:textSize="35dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials point"
android:id="@+id/textView"
android:layout_below="@+id/textview"
android:layout_centerHorizontal="true"
android:textColor="#ff7aff24"
android:textSize="35dp" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/abc"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:theme="@style/Base.TextAppearance.AppCompat" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:layout_below="@+id/imageView"
android:hint="Tittle"
android:textColorHint="#ff69ff0e"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:layout_below="@+id/editText"
android:layout_alignLeft="@+id/editText"
android:layout_alignStart="@+id/editText"
android:textColorHint="#ff21ff11"
android:hint="Link"
android:layout_alignRight="@+id/editText"
android:layout_alignEnd="@+id/editText" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText3"
android:layout_below="@+id/editText2"
android:layout_alignLeft="@+id/editText2"
android:layout_alignStart="@+id/editText2"
android:hint="Description"
android:textColorHint="#ff33ff20"
android:layout_alignRight="@+id/editText2"
android:layout_alignEnd="@+id/editText2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Fetch"
android:id="@+id/button"
android:layout_below="@+id/editText3"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/imageView"
android:layout_toStartOf="@+id/imageView" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Result"
android:id="@+id/button2"
android:layout_alignTop="@+id/button"
android:layout_alignRight="@+id/editText3"
android:layout_alignEnd="@+id/editText3" />
</RelativeLayout>
将 res/values/string.xml 修改为以下内容
<resources>
<string name="app_name">My Application</string>
</resources>
这是默认 AndroidManifest.xml 。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sairamkrishna.myapplication" >
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".second"></activity>
</application>
</manifest>
让我们尝试运行您的应用程序。我假设您在进行环境设置时已经创建了您的 AVD 。要从 Android Studio 运行应用程序,请打开项目的活动文件之一,然后单击工具栏中的运行图标。Android Studio 会在您的 AVD 上安装应用程序并启动它,如果您的设置和应用程序一切正常,它将显示以下仿真窗口 −
只需按 Fetch Feed 按钮即可获取 RSS feed。按之后,将出现以下屏幕,其中将显示 RSS 数据。
只需按结果按钮即可查看位于 https://www.tutorialspoint.com/android/sampleXML.xml 的 XML