All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bytegriffin.get4j.sample.AnjukePageParser Maven / Gradle / Ivy

The newest version!
package com.bytegriffin.get4j.sample;

import com.bytegriffin.get4j.Spider;
import com.bytegriffin.get4j.core.Page;
import com.bytegriffin.get4j.parse.PageParser;

/**
 * 安居客 - 楼盘
 */
public class AnjukePageParser  implements PageParser {

    @Override
    public void parse(Page page) {
       System.err.println("房源名称:["+page.getTitle() + "]   访问地址:[" + page.getUrl()+"]" );
    }

    public static void main(String[] args) throws Exception {
        Spider.list_detail().fetchUrl("https://bj.fang.anjuke.com/loupan/all/p1/")
        		.detailLinkSelector("a.lp-name[href]").parser(AnjukePageParser.class)
                .defaultUserAgent().thread(1).start();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy