打开编辑器后,如何在Eclipse插件中正确设置IFile的内容

时间:2019-04-15 21:27:14

标签: java eclipse-plugin eclipse-rcp

我正在使用以下代码来设置IFile的内容:

public static IFile updateFile(IFile file, String content) {
    if (file.exists()) {
        InputStream source = new ByteArrayInputStream(content.getBytes());

        try {
            file.setContents(source, IResource.FORCE, new NullProgressMonitor());

            source.close();
        } catch (CoreException | IOException e) {
            e.printStackTrace();
        }
    }

    return file;
}

当未在编辑器中打开文件时,此方法工作正常,但是如果打开文件,我将收到以下警告,就像在Eclipse之外修改了文件一样:

enter image description here

我尝试在调用refreshLocal()之前和之后刷新文件(通过调用setContents()方法,但这无济于事。

有办法避免这种警告吗?

2 个答案:

答案 0 :(得分:1)

将您的方法包装在WorkspaceModifyOperation中。

答案 1 :(得分:0)

编辑器反应看起来是正确的,因为在org.eclipse.jface.text.IDocument之外进行了绑定到编辑器实例的修改。

正确的方法将不是修改文件内容,而是修改表示文件内容的“模型”实例,例如JDT的IJavaElement

您还可以尝试直接处理文档内容(需要打磨以生产):

        IWorkbenchWindow[] windows = PlatformUI.getWorkbench().getWorkbenchWindows();
        for (IWorkbenchWindow window : windows) {
            IWorkbenchPage[] pages = window.getPages();
            for (IWorkbenchPage page : pages) {
                IEditorReference[] editorReferences = page.getEditorReferences();
                for (IEditorReference editorReference : editorReferences) {
                    IEditorPart editorPart = editorReference.getEditor(false/*do not restore*/);
                    IEditorInput editorInput = editorPart.getEditorInput();
//skip editors that are not related
                    if (inputAffected(editorInput)) {
                        continue;
                    }
                    if (editorPart instanceof AbstractTextEditor) {
                        AbstractTextEditor textEditor = (AbstractTextEditor) editorPart;
                        IDocument document = textEditor.getDocumentProvider().getDocument(editorInput);
                        document.set(content);
                    }
                }
            }
        }

老实说,我不理解您要介绍的情况,也许有更好的方法可以做到这一点。