如何通过点击按钮在java中运行一个大进程

发布于 2024-09-15 10:33:02 字数 76 浏览 6 评论 0原文

我需要在单击按钮时启动爬行过程,如果我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

静赏你的温柔 2024-09-22 10:33:03

您可以使用 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.

长发绾君心 2024-09-22 10:33:02

在另一个线程中启动它
参考
示例

Start it in another Thread
ref
example

深爱成瘾 2024-09-22 10:33:02

在“单击时”回调中调用另一个线程,如下所示:


Thread t = new Thread(new Runnable() {  
    public void run() {  
        // your code  
    }  
});  
t.start();  

Call another thread inside the "on click" callback, like this:


Thread t = new Thread(new Runnable() {  
    public void run() {  
        // your code  
    }  
});  
t.start();  

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文