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 7874813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T02:52:32+00:00 2026-06-03T02:52:32+00:00

I have chosen file using File file = fileChooser.getSelectedFile(); Now I want to write

  • 0

I have chosen file using

File file = fileChooser.getSelectedFile();

Now I want to write this file chosen by user to another location when user clicks save button. How to achieve that using swing?

  • 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-03T02:52:33+00:00Added an answer on June 3, 2026 at 2:52 am

    To select the file you need something like ,

        JFileChooser open = new JFileChooser();
        open.showOpenDialog(this);
        selected = open.getSelectedFile().getAbsolutePath(); //selected is a String 
    

    …and to save a copy ,

        JFileChooser save = new JFileChooser();  
        save.showSaveDialog(this);  
        save.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
        tosave = fileChooser.getSelectedFile().getAbsolutePath(); //tosave is a String
    
        new CopyFile(selected,tosave);
    

    …the copyFile class will be something like,

    public class CopyFile {
    
        public CopyFile(String srFile, String dtFile) {
    
            try {
                File f1 = new File(srFile);
                File f2 = new File(dtFile);
                InputStream in = new FileInputStream(f1);
    
                OutputStream out = new FileOutputStream(f2);
    
                byte[] buf = new byte[1024];
                int len;
                while ((len = in.read(buf)) > 0) {
                    out.write(buf, 0, len);
                }
                in.close();
                out.close();
                System.out.println("File copied.");
            } catch (FileNotFoundException ex) {
                System.out.println(ex.getMessage() + " in the specified directory.");
                System.exit(0);
            } catch (IOException e) {
                System.out.println(e.getMessage());
            }
        }
    }
    

    Also have a look at this question : How to save file using JFileChooser? #MightBeHelpfull

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

Sidebar

Related Questions

im using extjs4 with dwr3 to upload a file this is all i have
I have chosen diploma work in university. It's a mini social network. But now
I am working with a hexagonal grid. I have chosen to use this coordinate
Say a user registers for your site, you hash the password they have chosen
I have this file sharing program, where i can get mye files from a
What i want is that i have made a picture chooser, the image chosen
I'm creating a Qt application using PyQt4 in Python. I have chosen the Dialog
using CodeIgniter normally one has to specify the controllers in the config/routes.php file. This
Maybe this is a very silly question but I'm new using django. I have
I have an application using JFileChooser to select a directory. In this app, I

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.