说说JAVA之网络编程 - 爬虫

首先总结一下学习过程中所需要的类:

URL类 - openConnection()

URLConnection类 - connection() getInputStream()

BufferedReader类 (缓冲流)

InputStreamReader类 - (解释一下 这个类是用来将InputStream流转化为Reader) 

正则表达式相关的类

Pattern类 (该类实例化是通过Pattern的方法compile得到实例的

例如 Pattern pattern = Pattern.compile(此处填充正则表达式);

compile返回类型时Pattern 实际上是一个关于正则表达式的String

)

Matcher类 - find() group() (

该类实例化的方法是通过Pattern类的对象进行创建的

例如 pattern.matcher(此处填充的是需要被匹配的元素);

matcher() - return - Matcher对象

)

 

posted on 2016-07-07 10:18  野区杰西  阅读(408)  评论(0编辑  收藏  举报

导航