Hutool包下使用PinyinUtil获取汉字的拼音首字母报错

报错内容:cn.hutool.extra.pinyin.PinyinException: No pinyin jar found ! Please add one of it to your project !

解决方法:

  • 使用 PinyinUtil 需要配合依赖第三方的拼音库包,所以除了需要导入 hutool-all 包以外,还需要导入如下依赖包
	
    <dependency>
      <groupId>com.belerwebgroupId>
      <artifactId>pinyin4jartifactId>
      <version>2.5.0version>
    dependency>
    <dependency>
      <groupId>io.github.biezhigroupId>
      <artifactId>TinyPinyinartifactId>
      <version>2.0.3.RELEASEversion>
    dependency>
    <dependency>
      <groupId>com.github.stuxuhaigroupId>
      <artifactId>jpinyinartifactId>
      <version>1.1.8version>
    dependency>
    
  • 添加依赖后,问题即解决。

你可能感兴趣的:(Exception,java,hutool,exception)