当我尝试在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/

    10-09 01:19