Note that there are some explanatory texts on larger screens.

plurals
  1. POHow create progress bar while file transfering
    primarykey
    data
    text
    <pre><code>import java.awt.Component; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import javax.swing.JOptionPane; import javax.swing.ProgressMonitorInputStream; public class buckUpFile { private Component parentComponent; public void copyFile() { File srcFolder = new File( "C:\\Users\\ALLEN\\Workspace\\FINAL_LCTP_WORKBENCE_1.5"); File destFolder = new File( "C:\\Data Programing\\COPY_OF_FINAL_LCTP_WORKBENCE_1.5"); if (!srcFolder.exists()) { JOptionPane.showMessageDialog(null, "Directory does not exist."); System.exit(0); } else { try { copyFolder(srcFolder, destFolder); } catch (IOException e) { e.printStackTrace(); System.exit(0); } } JOptionPane.showMessageDialog(null, "Back up request has been completed"); } public void copyFolder(File src, File dest) throws IOException { if (src.isDirectory()) { if (!dest.exists()) { dest.mkdir(); } String files[] = src.list(); for (String file : files) { File srcFile = new File(src, file); File destFile = new File(dest, file); copyFolder(srcFile, destFile); } } else { InputStream in = new BufferedInputStream( new ProgressMonitorInputStream(parentComponent, "Reading " + src, new FileInputStream(src))); OutputStream out = new FileOutputStream(dest); byte[] buffer = new byte[1024]; int length; while ((length = in.read(buffer)) &gt; 0) { out.write(buffer, 0, length); } in.close(); out.close(); } } } </code></pre> <p>The codes i have above works just fine it allows me to copy the data of a file from one directory to another. My problem is, how can i create a progress bar? that i could attach to my codes to make my program more user friendly. I tried using ProgressMonitorInputStream but it looks like I'm in the wrong path. I hope anybody would be kind enough to lend me some assistance. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload