我想使用StringUtils并下载“ apache commons jar” zip文件,将解压缩的jar文件复制到我的intellij项目中的lib文件夹中,并将其添加到库和类路径中(通过“项目设置”)。然后我用

导入org.apache.commons.lang3.StringUtils;

但是intelliJ无法解析'lang3'。有人有建议吗?注意:类似的问题也存在于堆栈交换中,例如。 herehere,但是它们并不是完全相同的问题,它们的解决方案也无济于事。

仅供参考,我从this website下载了“ common-lang3 / common-lang3.jar.zip”文件夹。

谢谢!

最佳答案

您需要解压缩zip并将解压缩的common-lang3.jar文件添加到module dependencies中,而不是下载的common-lang3.jar.zip文件中。

这是示例项目:HelloStringUtils.zip

执行和导入工作的结果:

java - Intellij无法解析符号'lang3'Apache-LMLPHP

依赖性配置屏幕截图:


module dependencies
library contents
StringUtils class browsable in the library jar

07-28 13:09