当我尝试在IntelliJ中创建项目时,在此行上收到以下错误:
Sentence sent = new Sentence();
sent.emptySegments();
错误:
Error:(151, 10) java: cannot access javax.xml.bind.RootElement
class file for javax.xml.bind.RootElement not found
Sentence
是一个实现RootElement
接口(interface)的类import javax.xml.bind.RootElement;
...
public class Sentence extends MarshallableRootElement implements RootElement {
所有软件包都存在,我可以跳转到每个接口(interface)或类的声明,但是我不知道为什么IntellJ说它无法访问或找到它们?但是
RootElement
是接口(interface)而不是类public interface RootElement extends Element {
void validate() throws StructureValidationException;
}
上面的声明位于一个名为
jaxb-rt-1.0-ea.jar
的jar文件中,并且存在于Project图书馆员中。 最佳答案
尝试这个
关于java - Java无法访问类,找不到类文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38549649/