在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...");
}
我不想手动编写import语句......这是NetBeans所期望的吗?
答案 0 :(得分:2)
您必须使用菜单选项“来源 - >修复导入”,它将为您生成所有缺少的导入
答案 1 :(得分:0)
您可以通过快捷键导入所有缺失的类 ALT + SHIFT + I