網頁設計 JAVA 若何在LINUX COPY files時
用new Thread如許包起來就能夠了
問甚麼要如許做呢?
因為dialog其實是特別很是浪費資本的
如果我程式起始啟動dialog
結束用dialog.dispose();時
dialog圖標基本還沒出來就封閉了
就卡個視窗而以
完全過程圖片
有利用過進度條的朋侪必然會覺得很不利便
因為要從0~100讀取 鋪張時候
因檔案巨細也不知道這時候間讀寫的完嗎?
如這篇
Java Swing 若何利用進度
於是經由批改
改成此方式
可哄騙DIALOG準確的抓到讀寫完成的時候
- processdialog.setTitle("Copying files to USB");
- processdialog.add(labelimg);
- processdialog.setLocation(400,250);網頁設計
- processdialog.pack(); // Packs the dialog so that the JOptionPane can be seen
- processdialog.setVisible(true); // Shows the dialog
- new Thread(){
- public void run(){
- try{
- Process process = null;
- BufferedReader input = null;
- final Runtime runtime = Runtime.getRuntime();網頁設計
- //extact tar for ext3 file
- String tarstring = "tar -xvpf /"+tarpath+"/"+cellValue+".tar -C "+extpatition+"/";
- process = runtime.exec(new String[]{"/bin/sh","-c",tarstring});
- InputStream stdout = process.getInputStream ();
- InputStreamReader osr = new InputStreamReader (stdout);
- BufferedReader obr = new BufferedReader (osr);
- process.waitFor();
-
- Thread.sleep(2000);
- }catch(Exception e){
- e.printStackTrace();
- }finally{
- processdialog.dispose();
- }
- }
- }.start();網頁設計
複製代碼
本文來自: