A parser for the CC-CEDICT Chinese-to-English dictionary
Go to file
Marvin Elsen 7a07250542
All checks were successful
Publish package / publish (push) Successful in 1m38s
Merge pull request 'Bump chinese-transliteration version' (#8) from develop into main
Reviewed-on: #8
2024-10-07 19:04:18 +00:00
.gitea/workflows Rename file for uniformity 2024-09-20 12:44:25 +02:00
gradle Bump chinese-transliteration version 2024-10-07 21:00:13 +02:00
src Bump chinese-transliteration version 2024-10-07 21:00:13 +02:00
.gitignore Initial commit 2024-09-15 13:50:45 +02:00
build.gradle.kts Bump chinese-transliteration version 2024-10-07 21:00:13 +02:00
gradle.properties Add code 2024-09-15 13:51:15 +02:00
gradlew Add code 2024-09-15 13:51:15 +02:00
gradlew.bat Add code 2024-09-15 13:51:15 +02:00
LICENSE Add license 2024-09-15 15:55:04 +02:00
README.md Add build section 2024-09-25 20:29:48 +02:00
settings.gradle.kts Add code 2024-09-15 13:51:15 +02:00

CC-CEDICT Parser for Kotlin

A parser for the CC-CEDICT Chinese-to-English dictionary written in Kotlin.

Build

To build the project locally, simply run the following command from the terminal:

./gradlew build

Installation

CC-CEDICT Parser for Kotlin is available from my self-hosted Gitea instance.

First, add the repository to your build.gradle.kts file:

repositories {
    maven {
        url = uri("https://gitea.marvinelsen.com/api/packages/marvinelsen/maven")
    }
}

Afterwards, add the package dependency to your build.gradle.kts file:

dependencies {
    implementation("com.marvinelsen:cedict-parser:2.0.0")
}

Usage

fun main() {
    val cedictInputStream = GZIPInputStream(object {}.javaClass.getResourceAsStream("/cedict_1_0_ts_utf-8_mdbg.txt.gz")!!)

    cedictInputStream.use {
        val cedictParser = CedictParser.instance
        val cedictEntries = cedictParser.parseCedict(cedictInputStream)

        cedictEntries.forEach { entry ->
            println(entry.traditional)
            println(entry.simplified)
            println(entry.pinyinSyllables.joinToString(" ") { it.format(TransliterationSystem.PINYIN_WITH_TONE_NUMBERS) })
            println(entry.definitions.joinToString("/") { it.glosses.joinToString(";") })
        }
    }
}

License

All source code in this repository is licensed under a MIT license, unless otherwise noted.

To the following third-party code, data, and files in the repository different licenses apply:

CC-CEDICT

CC-CEDICT is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.