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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:21:36+00:00 2026-05-27T15:21:36+00:00

I am using a JFileChooser in my Java app and I need to ask

  • 0

I am using a JFileChooser in my Java app and I need to ask the user if they wish to overwrite the file if the selected file already exist?

Is there a provided functionality that I can use? Or roll my own? I am using Swing and JDK 1.4

  • 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-05-27T15:21:36+00:00Added an answer on May 27, 2026 at 3:21 pm

    The default one doesn’t have that functionality, you’ll have to write your own. Or use someone else’s.

    private class CustomFileChooser extends JFileChooser {
      private String extension;
      public CustomFileChooser(String extension) {
        super();
        this.extension = extension;
        addChoosableFileFilter(new FileNameExtensionFilter(
          String.format("%1$s Images (*.%1$s)", extension), extension));
      }
    
      @Override public File getSelectedFile() {
        File selectedFile = super.getSelectedFile();
    
        if (selectedFile != null) {
          String name = selectedFile.getName();
          if (!name.contains("."))
            selectedFile = new File(selectedFile.getParentFile(), 
              name + '.' + extension);
        }
    
        return selectedFile;
      }
    
      @Override public void approveSelection() {
        if (getDialogType() == SAVE_DIALOG) {
          File selectedFile = getSelectedFile();
          if ((selectedFile != null) && selectedFile.exists()) {
            int response = JOptionPane.showConfirmDialog(this,
              "The file " + selectedFile.getName() + 
              " already exists. Do you want to replace the existing file?",
              "Ovewrite file", JOptionPane.YES_NO_OPTION,
              JOptionPane.WARNING_MESSAGE);
            if (response != JOptionPane.YES_OPTION)
              return;
          }
        }
    
        super.approveSelection();
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I face the following strange problem while using JFileChooser package sandbox; import java.io.File; import
In my Java application I need to select a path using JFileChooser. The code
Using C#, I need a class called User that has a username, password, active
I have a dialog using JFileChooser. When I save a file by FileOutputStream ,
I'm using java.awt.FileDialog to create a dialog for saving a file. The problem is
I am using netbeans for developing java dextop application,I have created a JFilechooser which
I need to find my documents path using Java. The following code doesn't give
I am using JFileChooser in an app to browse for a directory however when
So, i am showing a file chooser dialog using: JFileChooser c = new JFileChooser();
Using ASP.NET MVC there are situations (such as form submission) that may require a

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.