如何在java中设置mysql数据库保存数据的进度条?

83qze16e  于 2021-06-24  发布在  Mysql
关注(0)|答案(1)|浏览(305)

和平与你们所有人,任何一个知道或有一个与进度条保存数据的源代码。*即使数据是文本,用户也可以查看保存状态。*用户也可以取消保存数据,例如有许多数据。*用户可以单击后台进程以便能够在后台运行,或者用户可以执行其他进程(多线程)。。
我已经在谷歌上搜索了一个星期了。是的,有一个进度条的例子,但我真的不明白。有人能帮我吗?拜托。。。谢谢您。。愿和平与你同在。。

ogsagwnx

ogsagwnx1#

Runnable dbThread = new Runnable() {
    @Override
    public void run() {
        dodbwork(); //as mentioned by Nicolas do your Database work here
    }
};
         Runnable uiThread = new Runnable() {
    @Override
    public void run() {
        doUIUpdates(); // and your UI work here
        try {
            Thread.sleep(300);//telling your thread to wait in  milliseconds
        } catch (InterruptedException ex) {
            Logger.getLogger(saveprogressbar.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
};
         dbThread.run();//this is how you run your thread later on
         uiThread.run();

相关问题