读取文件后生成事件
我想在完成文件读取后引发 Java 中的某个事件,以便处理程序可以捕获该事件并继续执行下一个任务。我无法在 Java 中找到在完成文件读取后引发的现有事件。
他们有什么办法可以做到这一点,或者有任何其他替代方案吗?
I want to raise the some event in Java after finishing the reading of file so that the handler can catch the event and proceed to next task .I am not able to find the existing event in Java which raise after finishing the reading of file.
is their any way to do so,or any other alternative for that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用观察者设计模式。
发起文件读取的类,读取文件后会收到通知。
将读取文件的类,读取后它将通知观察者文件读取已完成。
You can use Observer Design Pattern.
The Class that initiates the reading of file and will get the notification after the file is read.
Class that will read the file and after the reading it will notify the Observers that the file reading is finished.
你可以在java中尝试Tokens和Tokenizer,
检查这个
供参考。
you can try Tokens and Tokenizer in java,
check this
for reference.