net.sourceforge.pinyin4j.PinyinHelper 对应依赖
时间: 2023-11-11 16:02:49 浏览: 144
Pinyin4j工具类
如果你在使用 Maven 作为项目构建工具,你可以将以下依赖添加到你的 pom.xml 文件中:
```xml
<dependency>
<groupId>com.belerweb</groupId>
<artifactId>pinyin4j</artifactId>
<version>2.5.1</version>
</dependency>
```
如果你使用 Gradle 构建项目,你可以将以下依赖添加到你的 build.gradle 文件中:
```
implementation 'com.belerweb:pinyin4j:2.5.1'
```
如果你手动管理你的依赖,你可以从 Maven 中央仓库下载 Pinyin4j 的 JAR 包,并将其加入到你的项目中。你可以从以下链接中下载 Pinyin4j 的 JAR 包:
- [Pinyin4j 2.5.1 JAR](https://repo1.maven.org/maven2/com/belerweb/pinyin4j/2.5.1/pinyin4j-2.5.1.jar)
阅读全文