Intellij插件创建后在编辑器中打开新类

时间:2016-12-16 10:15:33

标签: java intellij-idea intellij-plugin

我正在写一个intellij插件。在我创建Java类之后,我想在编辑器中打开新创建的文件。我该怎么做呢?

1 个答案:

答案 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);