You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
FYReader/app/src/main/java/xyz/fycz/myreader/crawler/BookInfoCrawler.java

12 lines
244 B

package xyz.fycz.myreader.crawler;
import xyz.fycz.myreader.greendao.entity.Book;
/**
* @author fengyue
* @date 2020/5/19 19:50
*/
public interface BookInfoCrawler {
String getCharset();
Book getBookInfo(String html, Book book);
}