Jsoup Annotations POJO
Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
compile 'com.github.fcannizzaro:jsoup-annotations:1.0.3'
}
Element html = Jsoup.connect("https://www.npmjs.com/").get();
/*
* Scrape!
* Use JsoupProcessor or JP
*/
NPM npm = JP.from(html, NPM.class);
// or
List<Package> packages = JP.fromList(html, Package.class);
See Sample Code
Can be used for class or field.
@Selector("#content")
class Content {
// internal elements
}
@Text("h3")
String title;
@Html("div.inner")
String html;
@Attr(query="a", attr="href")
String href;
@Text("head > title")
void title(String title){
// do something with result
}
@ForEach("li")
void iterate(Element element, int index){
// [required] element
// [optional] index
// do something
}
@AfterBind
void attached(){
// called after object binding is completed.
}
Denote Field as child element (POJO).
Denote Field as List of Elements (POJO).
Francesco Cannizzaro (fcannizzaro)
Copyright 2017 Francesco Saverio Cannizzaro
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.