JEdi​​t宏 - 打开并保存文件

时间:2008-11-17 15:56:07

标签: java macros jedit beanshell

我有一个JEdit(BeanShell)宏,它打开一个特定文件,然后立即将文件保存到我的c:\ temp文件夹中(这样我就不会意外更新真实文件)。

这是bean shell代码:

logFilePath = "c:\\temp\\aj.txt";
jEdit.openFile( view , logFilePath );
_buffer = jEdit.getBuffer(logFilePath);
_buffer.save(view,"c:\\temp\\backup.txt",true);

这给了我以下错误:

I/O Error
Each buffer can only execute one input/output operation at a time.  
Please wait until the current operation finishes 
(or abort it in the I/O progress monitor) before starting another one.  

我尝试添加一个while循环来等待 buffer.isLoaded() 为真,但这只会进入一个无限循环。
似乎有用的是弹出一个消息框( Macros.message )。但是,我真的不想进行这种不必要的对话。

我不太了解java,所以请告诉我,如果我犯了一个菜鸟错误。

更新

添加了我自己的答案,以显示Serhii's answer指向的代码。

3 个答案:

答案 0 :(得分:4)

您可以尝试this solution,呼叫VFSManager.waitForRequests();

答案 1 :(得分:3)

本作品

这是上面Serhii's answer指向的代码。

VFSManager.waitForRequests(); 命令后添加 jEdit.openFile()

完整代码

logFilePath = "c:\\temp\\aj.txt";
jEdit.openFile( view , logFilePath );

VFSManager.waitForRequests();

/* 
    VFSManager.waitForRequests();

    jEdit waits then for the file to be completely loaded before continuing 
    ... It's designed for waiting on all 'pending I/O requests'".
*/

_buffer = jEdit.getBuffer(logFilePath);
_buffer.save(view,"c:\\temp\\backup.txt",true);

答案 2 :(得分:0)

你也可以不那么大胆。

  1. 使用jEdit.openFile()的返回值,这已经是Buffer,不需要getBuffer()
  2. 不要调用VFSManager.waitForRequests()等待所有请求完成,只需将BufferListener添加到从jEdit.openFile()获取的Buffer中,并在此侦听器的bufferLoaded方法中执行save调用: - )