修复txt的一些问题

This commit is contained in:
kunfei
2022-02-23 19:17:41 +08:00
parent a0d181a90b
commit 0e8a669c86

View File

@@ -57,12 +57,14 @@ class TextFile(private val book: Book) {
*/
@Throws(FileNotFoundException::class)
fun getChapterList(): ArrayList<BookChapter> {
if (book.charset == null || book.tocUrl.isEmpty()) {
if (book.charset == null || book.tocUrl.isBlank()) {
LocalBook.getBookInputStream(book).use { bis ->
val buffer = ByteArray(bufferSize)
var blockContent: String
var length = bis.read(buffer)
book.charset = EncodingDetect.getEncode(buffer)
if (book.charset.isNullOrBlank()) {
book.charset = EncodingDetect.getEncode(buffer)
}
charset = book.fileCharset()
blockContent = String(buffer, 0, length, charset)
if (book.tocUrl.isBlank()) {