错误:在android中找不到符号类StringJoiner

时间:2016-10-19 18:21:05

标签: android apache-commons

当我使用这个gradle依赖时,我收到以下错误:

 compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'

是解决这个问题的任何方法,或者它与android不兼容。还有其他方法可以使用StringJoiner吗?

error: cannot find symbol class StringJoiner
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

构建项目时创建的错误。

1 个答案:

答案 0 :(得分:1)

确保您的目标版本为24。StringJoiner是从API 24开始引入的。

如果您支持< = API 24,请考虑使用StringBuilder

要了解其中的差异,请参阅here