当前位置: 首页 > 科技观察

安卓天影开心阅读网络阅读器源码下载

时间:2023-03-18 23:59:44 科技观察

功能分类:娱乐支持平台:Android运行环境:Android开发语言:Java开发工具:Eclipse源代码大小:15.49MB源码介绍网络阅读器是在大学里完成的,和它根据CSDN的网页元素设计来解析和提取内容。核心功能是使用jsoup进行解析。以下是相关截图。【注:程序存在一些bug】源码运行截图源代码片段包com.weiyi.itreader.util;importjava.util.ArrayList;importjava.util.List;importorg.jsoup.Jsoup;importorg.jsoup.nodes.Document;importorg.jsoup.nodes.Element;importorg.jsoup.select.Elements;importandroid.util.Log;importcom.weiyi.itreader.common.Constant;importcom.weiyi.itreader.entity.ITBlog;/***功能:ITBlog采集工具,通过url解析html获取网络文章的各种信息,主要使用html解析工具Jsoup**@authormoho**/publicclassITBlogUtil{/***获取文章列表**@paramurl*请求的URL*@returnListIT阅读文章列表**/publicstaticListgetITBlogList(Stringurl){ListitBlogs=newArrayList();try{Documentdoc=Jsoup.connect(url).get();Elementstitles=doc.getElementsByClass(Constant.ITBLOG_TITLE_CLASS).tagName("a");//获取class=link_title的所有标签元素Elementsdates=doc.getElementsByClass(Constant.ITBLOG_DATE_CLASS);Elementsurls=titles.select(Constant.HREF_SELECT);for(inti=0;i0)iconUrl=imgElements.get(0).attributes().get("src");//获取UIRL,默认取第一个遇到img的url}catch(Exceptione){e.printStackTrace();}returniconUrl;}}源码下载地址:http://down.51cto.com/data/1963020