我正在使用提供的API为Netbeans开发一个插件模块,以便为新的编程语言提供支持。
我在Context菜单中使用文件类型中定义的MIME类型创建了一个Action。
我正在寻找一种方法来保存正在被选中的文件。最好只有在它改变了。
还可以保存项目所有文件中的所有更改吗?
Action Listener类的部分代码:
@Override
public void actionPerformed(ActionEvent ev) {
FileObject f = context.getPrimaryFile();
String path = f.getPath();
String name = f.getName();
//Save file here
ExecutionDescriptor descriptor = new ExecutionDescriptor()
.controllable(true)
.frontWindow(true)
.preExecution(before)
.postExecution(after);
ExecutionService exeService = ExecutionService.newService(
new ProcessLaunch(cmdLine),
descriptor, "Run " + name);
Future<Integer> exitCode = exeService.run();
}
答案 0 :(得分:3)
LifecycleManager.getDefault().saveAll();
这将保存项目中的所有对象。
答案 1 :(得分:1)
试试这个:
FileObject f = ...
DataObject data = DataObject.find(f);
EditorCookie cookie = data.getLookup().lookup(EditorCookie.class);
cookie.saveDocument();