优化
This commit is contained in:
@@ -20,6 +20,7 @@ import me.ag2s.epublib.epub.EpubReader
|
|||||||
import me.ag2s.epublib.util.zip.AndroidZipFile
|
import me.ag2s.epublib.util.zip.AndroidZipFile
|
||||||
import org.jsoup.Jsoup
|
import org.jsoup.Jsoup
|
||||||
import org.jsoup.nodes.Element
|
import org.jsoup.nodes.Element
|
||||||
|
import org.jsoup.parser.Parser
|
||||||
import org.jsoup.select.Elements
|
import org.jsoup.select.Elements
|
||||||
import java.io.FileOutputStream
|
import java.io.FileOutputStream
|
||||||
import java.io.IOException
|
import java.io.IOException
|
||||||
@@ -229,6 +230,10 @@ class EpubFile(var book: Book) {
|
|||||||
//getElementsMatchingOwnText(chapter.title)?.remove()
|
//getElementsMatchingOwnText(chapter.title)?.remove()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
bodyElement.select("image").forEach {
|
||||||
|
it.tagName("img", Parser.NamespaceHtml)
|
||||||
|
it.attr("src", it.attr("xlink:href"))
|
||||||
|
}
|
||||||
bodyElement.select("img").forEach {
|
bodyElement.select("img").forEach {
|
||||||
val src = it.attr("src").encodeURI()
|
val src = it.attr("src").encodeURI()
|
||||||
val href = res.href.encodeURI()
|
val href = res.href.encodeURI()
|
||||||
|
|||||||
Reference in New Issue
Block a user