Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8161393
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T18:29:26+00:00 2026-06-06T18:29:26+00:00

I am using apache commons-net for downloading a file from an FTP server. That

  • 0

I am using apache commons-net for downloading a file from an FTP server. That much is working fine. The part I am having a problem with is showing the download progress using a JProgressBar.

The following code demonstrates how I am downloading the file I need:

public void download() {
    try {
        FTPClient ftpClient = new FTPClient();

        String fileName = "OFMEX_MANUFACTURING.jar";

        ftpClient.connect("192.168.1.242");
        int replyCode = ftpClient.getReplyCode();

        if (!FTPReply.isPositiveCompletion(replyCode)) {
            JOptionPane.showMessageDialog(null, "Server Down");
        }

        boolean login = ftpClient.login("bioftp", "bioftp");

        boolean changeWorkingDirectory = ftpClient.changeWorkingDirectory("ofmex\\Linux\\");
        boolean setFileType = ftpClient.setFileType(FTP.BINARY_FILE_TYPE);

        ftpClient.enterLocalPassiveMode();

        OutputStream data = (OutputStream) new FileOutputStream(fileName);

        ftpClient.retrieveFile(fileName, data);
        ftpClient.abort();               
    } catch (Exception e) {
        e.printStackTrace();
    }
} 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T18:29:27+00:00Added an answer on June 6, 2026 at 6:29 pm

    If You are going to call retriveFile() directly then you may not be able to know how many bytes are transferred. Instead, you can retrieve a file byte by byte and keep count of every byte transferred. You can also get the total bytes to be transferred so that you can calculate a percentage to show in the progress bar.

    InputStream stSource = new FileInputStream(locFile);
    OutputStream stDest = new BufferedOutputStream(ftp.storeFileStream(remFile), ftp.getBufferSize());
    
    Util.copyStream(stSource, stDest, ftp.getBufferSize(),CopyStreamEvent.UNKNOWN_STREAM_SIZE, new CopyStreamAdapter() {
        public void bytesTransferred(long totalBytesTransferred,int bytesTransferred, long streamSize) {
            long megsTotal = 0;
            long megs = totalBytesTransferred / 1048576;
    
            for (long l = megsTotal; l < megs; l++) {
                System.err.print("|");
            }
    
            megsTotal = megs;
        }
    });
    

    See this apache commons util used in above code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Apache's commons-net-2.2.jar to download a batch of files from a FTP server,
I'm using org.apache.commons.net.ftp.FTPClient to communicate with an ftp server via an android app I'm
I have code to upload a file to a server. import org.apache.commons.net.ftp.FTPClient; import java.io.File;
I'm trying to upload large file (>100Mb) using Apache commons-net FTP library to Secure
I'm using org.apache.commons.net.ftp.FTPClient and seeing behavior that is, well... perplexing. The method beneath intends
I am trying to store a file into a ftp server using apache commons
Weblogic 10.3.1.0 is using com.bea.core.apache.commons.net_1.0.0.0_1-4-1.jar... I want to use commons-net-2.0.jar from my code. How
I have a working prototype of a Java application that is using Apache Commons
I am using the Apache commons net FTPClient to distribute files as part of
We are using the following Apache Commons Net FTP code to connect to an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.