我有一个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指向的代码。
答案 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)
你也可以不那么大胆。