码迷,mamicode.com
首页 > 移动开发 > 详细

bsh for android : HTML parser

时间:2014-05-11 13:48:02      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:android   java   bsh   html解析器   

本来想用 import org.jsoup.Jsoup;

或者 import org.htmlparser.Parser;

可是 android 不支持 sun.com 原生java字节码执行 ,而是自成一家.

只能靠自己写了 ,例如: beanshell 抓取CSDN极客头条内容

TestHtmlParser.bsh

import java.net.*;
import java.io.*;
import org.json.*;

String utf8(String str){
	return new String(str.getBytes("8859_1"),"UTF-8");
}

String getText(String txt,char c, tag){
	int begin = txt.indexOf(c);
	if (begin > -1){
		begin += 1;
		end = txt.indexOf(tag,begin);
		if (begin<end){
			return txt.substring(begin,end);
		} else {
			return null;
		}
	} else {
		return null;
	}
}

getPage(String url){
	String prefix = "<a href=";
	String buf;
	String line;
	try {
		Url = new URL(url);
		conn = Url.openConnection();
		ins = new DataInputStream(conn.getInputStream());
		while((line= ins.readLine()) != null){
			buf = line.trim();
			if (buf.startsWith(prefix)){
				String href = getText(buf,‘"‘,‘"‘);
				//print(href);
				if (href != null && href.startsWith("http://")){
					if (! href.startsWith("http://www.csdn.net")){
						print(href); 
						print(utf8(getText(buf,‘>‘,"</a>"))); 
					}
				}
			}
		}
		ins.close();
	} catch(e) {
		print(e);
	}
}

getPage("http://geek.csdn.net/new");

在android 4.2 上测试通过.


bsh for android : HTML parser,布布扣,bubuko.com

bsh for android : HTML parser

标签:android   java   bsh   html解析器   

原文地址:http://blog.csdn.net/belldeep/article/details/25499913

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!