我的项目文件夹中有一个名为commons-lang3-3.5的lib文件夹,因为我需要下载它。我像这样导入
import org.apache.commons.lang3.*;
我尝试用
将每个单词的第一个字母大写WordUtils.capitalize(city);
然后我收到错误
weatherproject.java:2: error: package org.apache.commons.lang3 does not exist
import org.apache.commons.lang3.*;
^
weatherproject.java:17: error: cannot find symbol
WordUtils.capitalize(city);
^
symbol: variable WordUtils
location: class weatherproject