JFileChooser is a Java Swing component to provide a simple mechanism for the user to choose a file.

learn more… | top users | synonyms

0
votes
2answers
42 views

Reading a file after pressing a button

I have tried to create a program that lets you to choose a file,reads it and then prints the results out... This is what i have so far public class Main { public static void main(String[] args) { ...
4
votes
2answers
2k views

How can I make a JFileChooser on the Mac that lets users create directories?

I have an installer program that lets the user choose a directory in which to install. The JFileChooser implementation on MacOS uses a native dialog (or at least it looks native). That's great. The ...
0
votes
2answers
30 views

checking file extension with regular expression

I am writing a program that opens a file and loads all the file contents into a JTextArea. I want to restrict users from being able to open different file formats. The formats i want to accept ...
-1
votes
4answers
42 views

How to save the text file in a path given by JFileChooser?

I need to save a text File which is already created in a particular path given by JFileChooser. What I do basically to save is: public void actionPerformed(ActionEvent e) { JFileChooser chooser = ...
2
votes
0answers
119 views

JFileChooser does not react on pressing enter since java 7

I have a problem with the JFileChooser embedded in a JFrame. If I type a filename or regex into the textfield and press "enter" key nothing happens. If I use the "open" button instead of enter it ...
0
votes
2answers
45 views

error message with JButton and JFileChooser

I want to have a button with a JFileChooser action. This is the code that I wrote: public class Main { private static String fullPath; private JFileChooser inputFile; public static void main(String ...
1
vote
1answer
31 views

JFileChooser and Jbutton errors

following this question, error message with JButton and JFileChooser, I want to have a JButton to browse a file using JFileChooser. This is the code we have: package main; import java.awt.Component; ...
1
vote
1answer
31 views

Load an image into a JPanel in an applet

base on this thread :Java: Load image from file, edit and add to JPanel i tried to load na image into a JPanel but its not painting it,so here s the deal, as suggested i have created a new class file ...
-1
votes
1answer
66 views

JFileChooser - “cancel” and “open” buttons [closed]

I have used "NetBeans" to create Jframe class with a jFileChooser panel. When I click "cancel" button nothing happens and I get an exception. Always with netbeans I have created an event: private ...
2
votes
1answer
47 views

Using FileDialog on MacOS X instead of JFileChooser for file AND directory

Here's my problem. I have a Java application that runs on MacOS X. Right now I'm trying to make this application available on the Mac App Store. Unfortunately, Apple always reject my application ...
4
votes
4answers
650 views

jfilechooser better look?

When I'm using JFileChooser application in my program on Windows 7 it display such window: But when I run the JWS File Chooser Demo it displays much better window: Why?
0
votes
2answers
63 views

Cancel selecting a file within JFileChooser without closing the dialogue

I am trying to implement a "save as" dialogue using a JFileChooser. The dialogue is supposed to give the user the ability to type a filename and click save, at which point the new File object will be ...
1
vote
2answers
38 views

Save dialog doesn't add extension to file

I have a button that opens a save dialog window with default extension filters set. When I save a file it creates it in the correct folder, but it doesn't add the extension on the end. How would I go ...
11
votes
6answers
9k views

How to “Open” and “Save” using java

I want to make an "Open" and "Save" dialog in java? An example of what I want is in the images below: Open: Save:
0
votes
0answers
46 views

Having exceptions while using JFileChooser to open an excel file and reading the data

I am trying to open an excel file from jMenu and display the whole table in jFrame. The JFileChooser and JTable part I have in a ImportExcel class, the JFrame part is in Home class which has initUI() ...
2
votes
1answer
38 views

Start a JFileChooser with files ordered by date

A recent question asked: How can I start the JFileChooser in the Details view? and the answer provided a nice technique for doing that. I'd like to raise the aspiration here one level: given that I ...
0
votes
0answers
13 views

Java: fatal error, access violation in Java_sun_awt_shell_Win32ShellFolder2_compareIDsByColumn

The program pops up a JFileChooser, and if the user goes into details view then clicks on the column headings, the program dies completely with an exception access violation and the problematic frame ...
2
votes
1answer
58 views

File Change Detector In Java ( 95% implemented but require help in one case)

My Project is : File Change Detector: The input to the application will be a group of directories and files. When the application runs for the first time it will simply summarize the names and sizes ...
0
votes
3answers
56 views

Check if a JFileChooser has 1 or multiple files selected

How do I check if my JFilechooser has one file or multiple files selected?
0
votes
2answers
44 views

Setting FileChooserUI property in UIManager to the system's

I want to have my JFileChooser use the system's LookAndFeel, but have the rest of my components use Nimbus. Since each platform provides a different FileChooserUI, how would I set the FileChooserUI ...
0
votes
0answers
22 views

Protect java swing from network interruptions

I'm showing my ignorance here... I am programming on a Linux system, with a network CIFS file system mounted at /mnt/network. I am trying to be able to recover gracefully when I have a Swing ...
0
votes
1answer
56 views

Set filechooser Colors with Nimbus L&F

I'm using custom Colors with Nimbus. After hours of searching I can't find out how to set the Background and Foreground colors for JFilechooser properly. My (non working) code: ...
7
votes
3answers
164 views

How do you remove the Ctrl+C action on a JFileChooser?

I'm embedding a JFileChooser in my program in my own frame with other custom components in the frame. Here's a design of my app as it may help visualize my issues: If you can't tell, the lists ...
0
votes
3answers
52 views

JFileChooser on a Button Click

I have a button, clicking on which I want the JFileChooser to pop up. I have tried this JButton browse= new JButton("Browse"); add(browse); browse.addActionListener(new ClassBrowse()); public class ...
8
votes
6answers
6k views

JFileChooser select directory but show files

I feel like there should be a simple way to do this but I can't figure it out. I have a JFileChooser that allows the user to select directories. I want to show all the files in the directories to give ...
-1
votes
0answers
34 views

Stop JFileChooser from printing to console [closed]

I wrote a program which displays important information via the console. But I also want to use a JFileChooser for saving Files. My Problem is that file chooser prints a lot of weird things while ...
2
votes
2answers
51 views

How can I start the JFileChooser in the Details view?

I would like my JFileChooser to start in details view, instead of the "List" view that it starts in. How do you do that?
6
votes
4answers
2k views

JFileChooser Filters

I am putting a JFileChooser in my program, but that only takes images. So I decided to add filters: Code: import javax.swing.*; public class fileChooser { public static void main(String[] args) { ...
3
votes
4answers
699 views

Is there a way to improve JFileChooser look and feel under Ubuntu?

I've been making a program that uses a JFileChooser. I've set the application up with UIManager.getSystemLookAndFeelClassName() Which works just fine for pretty much everything under Ubuntu. ...
1
vote
3answers
3k views

File renameTo does not work

I am trying to add an extension to the name of file selected by a JFileChooser although I can't get it to work. This is the code : final JFileChooser fc = new JFileChooser(); ...
-5
votes
0answers
87 views

File chooser in java , gives empty file name [closed]

I'm trying to make an application where user have to choose an image and enter a text . I followed the example in http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html but when I ...
0
votes
0answers
43 views

Java - Calling System.setOut, System.setErr and JFileChooser.showDialog freezes application

Sorry for needing help so soon after my last question (here), but now I have another problem in the same application. This code: PrintStream stdOut = new PrintStream(new StandardOutputStream(), ...
1
vote
2answers
40 views

JFileChooser Returns FileNotFoundException

More specifically, it does work, but ONLY if I choose a file that exists in the source folder where my program and its resources are. When I move a file to, say, the desktop or My Documents and try to ...
19
votes
4answers
23k views

JFileChooser.showSaveDialog(…) - how to set suggested file name

The bloated JFileChooser seems to be missing one feature: a way to suggest the file name when saving a file (the thing that usually gets selected so that it would get replaced when user starts ...
1
vote
2answers
2k views

Open only .xml file in JFileChooser

I am developing a java application for which I need only .xml files. Now I want to show only .xml files in JFileChooser whenever user wants to save a file or open a existing file. Is this possible to ...
0
votes
0answers
63 views

How to Drag and Select Files in a JFileChooser

I have a JFileChooser that I would like to select multiple files from. I want to be able to drag and select multiple files; having the same functionality as Ctrl and Shift (think your OS's folder, the ...
0
votes
3answers
45 views

How to set Filepicker in java swing to select only specific file ? eg . only files with .mo as extension

The file needs to be the input file for the tool to process it further. I'm new to java.. would aprreciate any help. Here's my current code I have for the filepicker. private void ...
1
vote
1answer
381 views

Create a save/save as dialog box in java that save a newly created file or an edited file

Java Beginner: Please help been working on this for days and my brain is dead. I have created a java program (in eclipse) that has 3 menu: FILE, EDIT, HELP once file is clicked it display 4menuBar: ...
-1
votes
2answers
87 views

Starting a JFileChooser at a specified directory and only showing files of a specific type

I have a program utilizing a JFileChooser. To be brief, the full program is a GUI which allows users to manipulate PNGs and JPGs. I would like to make it so that the JFileChooser instantly opens to ...
0
votes
2answers
39 views

Exclude root drive selection from JFileChooser in Swing

I have a requirement where a user browse through JFileChooser and selects a folder. But while doing this selection the user should not be allowed to select root drive. By "Root Drive" I mean C: or D: ...
0
votes
1answer
29 views

Bundling .dll inside of .jar

I'm using XFileDialog (https://code.google.com/p/xfiledialog/) instead of JFileChooser, but I want to bundle the dll's inside the .jar so I don't have to ship them with the application. So I added ...
0
votes
1answer
35 views

JFileChooser won't compile

I'm trying to make a simple JFileChooser, but what I have done so far will not compile. The compiler is telling me that it cannot find the symbol 'class File' in Lines 66 & 80: ...
0
votes
2answers
54 views

Moving files in java

So far this is my code i would like to move the selected file to a path that i will define later in the code how do i get the path from the selcted file import java.awt.Component; import ...
2
votes
8answers
1k views

FileFilter for JFileChooser doesn't filter files - don't why, have code

I want to choose only .csv files with FileChooser but when chooser opens I see all extensions. Do I need to set somehing more then this? btnFile.addActionListener(new ActionListener() { ...
1
vote
2answers
100 views

how do I make jfilechooser only accept .txt

I trying to save my contact in my table but filechosser always setit to all file. is there way I can set it to accept .txt only and make it default or the only option. ...
0
votes
3answers
72 views

How do I use JFileChooser to save/load an array of ArrayList?

I have the following code: ArrayList<String> [] hotelArray = (ArrayList<String>[ ]) new ArrayList[5]; for (int i = 0; i < 5; i++) { hotelArray[i] = new ArrayList<String>(); } ...
0
votes
2answers
51 views

Putting files within a zip folder into an array of strings by path

First the user browses for the zip file containing their Java project using a JFileChooser which is limited to .zip extension only. Then I want all the file paths to be stored as strings in an array. ...
1
vote
4answers
262 views

Using a JFileChooser with Swing GUI classes and listeners

This is my current menu : public class DrawPolygons { public static void main (String[] args) throws FileNotFoundException { /** * Menu - file reader option */ ...
0
votes
1answer
91 views

Issues in using jfilechooser

I am using JFileChooser in my web project so that the client can download certain files from the server, But during testing whenever i click on the button that invokes the jfilechooser it pops up on ...
0
votes
3answers
56 views

JFileChooser doesn't disappear after cancelSelection()

I'm trying to close a JFileChooser. Could you, please, let me know why the cancelSelection method in the following snippet doesn't make it disappear after 5 seconds: public static void main(String [] ...

1 2 3 4 5 9