我正在写一个intellij插件。在我创建Java类之后,我想在编辑器中打开新创建的文件。我该怎么做呢?
答案 0 :(得分:1)
解决方案如下:
// we create the actual class
final VirtualFile newFile = JavaDirectoryService.getInstance().createClass(directory, className, templateName).getContainingFile().getVirtualFile();
// open to the new file in the editor
FileEditorManager.getInstance(project).openFile(newFile, true, true);