如何通过点击按钮在java中运行一个大进程
我需要在单击按钮时启动爬行过程,如果我在 onclick 中写入,则其他选项卡无法访问,直到该过程停止我需要在后台运行该过程。在java中
i need to start an crawl process on clicking a button if i write inside onclick the other tabs cant be accessible till the process stops i need to run the process in background.in java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 Java 5 中的“并发”包:
java.util.concurrent 包摘要
,特别是线程池。这会更加稳健,因为如果您无法正确处理线程终止或偶尔让它保持活动状态,则可能会出现资源泄漏。
You could use "concurrent" package from Java 5:
java.util.concurrent package summary
and, in particular, a thread pool. This would be more robust, since if you couldn't handle thread termination correctly or will occasionally leave it alive you could have a resource leak.
在另一个线程中启动它
参考
示例
Start it in another Thread
ref
example
在“单击时”回调中调用另一个线程,如下所示:
Call another thread inside the "on click" callback, like this:
如果您使用 Swing,那么这可能很有用
http: //download.oracle.com/javase/6/docs/api/javax/swing/SwingWorker.html
If you are using Swing then this might be useful
http://download.oracle.com/javase/6/docs/api/javax/swing/SwingWorker.html