在NetBeans中导入类



在Eclipse中,一旦我在类路径上放置了一个库,我就可以使用它的类,然后右键单击类名,Eclipse就会给出可以导入的具有匹配名称的各种类的建议。

我想在NetBeans中做类似的事情,所以我把鼠标移到或选择类名,然后按建议点击alt+enter。但唯一的选择是在应用程序中创建类。这个库是opencsv——我在Eclipse中使用过它,没有遇到任何问题(但我想尝试NetBeans(。

这是我的代码(我想导入CSVReader和FileReader的类(。。。但它只是让我可以选择创建自己的(:

CSVReader reader = new CSVReader(new FileReader("yourfile.csv"));
    String [] nextLine;
    while ((nextLine = reader.readNext()) != null) {
        // nextLine[] is an array of values from the line
        System.out.println(nextLine[0] + nextLine[1] + "etc...");
}

我不想手动编写导入语句。。。这是NetBeans所期望的吗?

您必须使用菜单选项"源->修复导入",它将为生成所有丢失的导入

您可以通过快捷键导入所有丢失的类Alt+shift+i

相关内容

  • 没有找到相关文章

最新更新