From 27bc4787e3df472fac3eb8d38882aea69b35709a Mon Sep 17 00:00:00 2001 From: Xwite <1797350009@qq.com> Date: Sat, 29 Jan 2022 09:51:35 +0800 Subject: [PATCH] =?UTF-8?q?txt=E6=96=87=E4=BB=B6=E8=A7=A3=E6=9E=90?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E6=97=B6=E7=A9=BA=E7=99=BD=E7=AB=A0=E8=8A=82?= =?UTF-8?q?=E8=A7=86=E4=B8=BA=E5=8D=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/java/io/legado/app/model/localBook/TextFile.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/main/java/io/legado/app/model/localBook/TextFile.kt b/app/src/main/java/io/legado/app/model/localBook/TextFile.kt index f49254ff9..10ca07546 100644 --- a/app/src/main/java/io/legado/app/model/localBook/TextFile.kt +++ b/app/src/main/java/io/legado/app/model/localBook/TextFile.kt @@ -124,6 +124,7 @@ class TextFile(private val book: Book) { val chapterStart = matcher.start() //获取章节内容 val chapterContent = blockContent.substring(seekPos, chapterStart) + var mChapterContent = chapterContent val chapterLength = chapterContent.toByteArray(charset).size val lastStart = toc.lastOrNull()?.start ?: curOffset if (curOffset + chapterLength - lastStart > 50000) { @@ -140,12 +141,14 @@ class TextFile(private val book: Book) { qyChapter.title = "前言" qyChapter.start = curOffset qyChapter.end = chapterLength.toLong() + qyChapter.isVolume = mChapterContent.substringAfter(qyChapter.title).isBlank() toc.add(qyChapter) } //创建当前章节 val curChapter = BookChapter() curChapter.title = matcher.group() curChapter.start = chapterLength.toLong() + curChapter.isVolume = mChapterContent.substringAfter(curChapter.title).isBlank() toc.add(curChapter) } else { //否则就block分割之后,上一个章节的剩余内容 //获取上一章节 @@ -157,6 +160,7 @@ class TextFile(private val book: Book) { val curChapter = BookChapter() curChapter.title = matcher.group() curChapter.start = lastChapter.end + curChapter.isVolume = mChapterContent.substringAfter(curChapter.title).isBlank() toc.add(curChapter) } } else { @@ -169,12 +173,14 @@ class TextFile(private val book: Book) { val curChapter = BookChapter() curChapter.title = matcher.group() curChapter.start = lastChapter.end + curChapter.isVolume = mChapterContent.substringAfter(curChapter.title).isBlank() toc.add(curChapter) } else { //如果章节不存在则创建章节 val curChapter = BookChapter() curChapter.title = matcher.group() curChapter.start = curOffset curChapter.end = curOffset + curChapter.isVolume = mChapterContent.substringAfter(curChapter.title).isBlank() toc.add(curChapter) } }