我想创建BeanTreeView的新节点,当我在构造函数中添加一些节点,然后运行应用程序,然后我尝试用树查看窗口,它会抛出此错误
java.lang.AssertionError: Component cannot be created for {component=null, displayName=Exploirer, instanceCreate=AlwaysEnabledAction[Exploirer]} at org.openide.windows.OpenComponentAction.getTopComponent(OpenComponentAction.java:71)
为什么呢?以及如何在那里添加节点?见代码。
private ProjectsChildren projectsChildren;
private final ExplorerManager mgr = new ExplorerManager();
private ProjectNode projectNode = new ProjectNode(new MainProject("ggg"), projectsChildren);
public ExploirerTopComponent() {
//*****************This is not important code for my problem
initComponents();
setName(NbBundle.getMessage(ExploirerTopComponent.class, "CTL_ExploirerTopComponent"));
setToolTipText(NbBundle.getMessage(ExploirerTopComponent.class, "HINT_ExploirerTopComponent"));
// setIcon(ImageUtilities.loadImage(ICON_PATH, true));
//map.put("delete", ExplorerUtils.actionDelete(mgr, true));
//*******************end of not important code
associateLookup (ExplorerUtils.createLookup(mgr, getActionMap()));
/* somewhere here is the problem*/
mgr.setRootContext(projectNode);
ProjectNode[] pr = null;
pr[0] = projectNode;
mgr.getRootContext().getChildren().add(pr);
}
答案 0 :(得分:0)
ProjectNode[] pr = null;
pr[0] = projectNode;
也许这就是问题所在?您有一个指向null的数组指针,然后您尝试将第一个ProjectNode对象分配给不存在的数组。
例如,使用ProjectNode[] pr = new ProjectNode[10];
创建数组会创建一个长度为10的空数组。执行此操作而不是将其指定为null。
答案 1 :(得分:0)
至少你有一个问题:
ProjectNode[] pr = null;
pr[0] = projectNode;
它将在第二行抛出NullPointerException ...
第一行应该是这样的:
ProjectNode[] pr = new ProjectNode[5]; // size is 5
答案 2 :(得分:0)
实际上,您的代码应该为您提供NullPointerException
,因为这里:
ProjectNode[] pr = null;
pr[0] = projectNode;
首先将数组设置为null,然后尝试访问第0个元素,然后将其设置为projectNode
。