I am unable to scrape heading from a web page using intents
in Android
. For the time being, I just want to extract heading text (h1 tag text) from a URL. I wrote a piece of code for extracting heading text in onHandleIntent(Intent intent)
but I think I am doing something wrong. My basic purpose is to write a webcrawler on Android. Can someone help me? Here is my code
MainActivity.java class
package com.example.awais.check2;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
private MyWebRequestReceiver receiver;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
IntentFilter filter = new IntentFilter(MyWebRequestReceiver.PROCESS_RESPONSE);
filter.addCategory(Intent.CATEGORY_DEFAULT);
receiver = new MyWebRequestReceiver();
registerReceiver(receiver, filter);
Button addButton = (Button) findViewById(R.id.sendRequest);
addButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
System.out.println("Clicked");
Intent msgIntent = new Intent(MainActivity.this, MyWebRequest.class);
msgIntent.putExtra(MyWebRequest.REQUEST_STRING, "http://tribune.com.pk");
startService(msgIntent);
}
});
}
@Override
public void onDestroy() {
this.unregisterReceiver(receiver);
super.onDestroy();
}
public class MyWebRequestReceiver extends BroadcastReceiver{
public static final String PROCESS_RESPONSE = "com.example.check.intent.action.PROCESS_RESPONSE";
@Override
public void onReceive(Context context, Intent intent) {
String responseString = intent.getStringExtra(MyWebRequest.RESPONSE_STRING);
String reponseMessage = intent.getStringExtra(MyWebRequest.RESPONSE_MESSAGE);
System.out.println(reponseMessage);
System.out.println(responseString);
}
}
}
MyWebRequest.java class code
package com.example.awais.check2;
import android.app.IntentService;
import android.content.Intent;
import android.os.SystemClock;
import android.text.format.DateFormat;
import android.util.Log;
import com.example.awais.check2.MainActivity.MyWebRequestReceiver;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
import java.io.IOException;
public class MyWebRequest extends IntentService {
public static final String REQUEST_STRING = "myRequest";
public static final String RESPONSE_STRING = "myResponse";
public static final String RESPONSE_MESSAGE = "myResponseMessage";
private String URL = null;
public MyWebRequest() {
super("MyWebRequest");
}
@Override
protected void onHandleIntent(Intent intent) {
String requestString = intent.getStringExtra(REQUEST_STRING);
String responseString = requestString + " " + DateFormat.format("MM/dd/yy h:mmaa", System.currentTimeMillis());
String responseMessage = "";
try {
Document doc;
URL = requestString;
doc = Jsoup.connect(URL).timeout(20 * 1000).get();
// System.out.println(doc.text());
Elements links = doc.select("h1");
responseMessage = links.text();
// System.out.println(links.text());
} catch (IOException e) {
responseMessage = e.getMessage();
}
Intent broadcastIntent = new Intent();
broadcastIntent.setAction(MyWebRequestReceiver.PROCESS_RESPONSE);
broadcastIntent.addCategory(Intent.CATEGORY_DEFAULT);
broadcastIntent.putExtra(RESPONSE_STRING, responseString);
broadcastIntent.putExtra(RESPONSE_MESSAGE, responseMessage);
sendBroadcast(broadcastIntent);
}
}
Content.xml code
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="10dp">
<Button android:text="Send Request " android:id="@+id/sendRequest"
android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…