com.ljs.ootp.extract.html.loader.JsoupLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ootp-extract Show documentation
Show all versions of ootp-extract Show documentation
Extraction of player information from OOTP HTML player pages
The newest version!
package com.ljs.ootp.extract.html.loader;
import com.ljs.ootp.extract.html.Documents;
import org.jsoup.nodes.Document;
/**
*
* @author lstephen
*/
public class JsoupLoader implements PageLoader {
@Override
public Document load(String url) {
return Documents.load(url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy