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

learn more… | top users | synonyms

1
vote
1answer
133 views

Java How to prevent user edits of file name in FileChooser OpenFileDialog

I need an Open Dialog File Chooser that opens files for reading only. I want user to only be able to click on a file name to select it with no option to edit the name. Users should be able to browse ...
0
votes
3answers
150 views

Unable to figure how to store “Save As” text in a string and use it

I am new to UI design in Java. I am trying to create a GUI to download a file off the Internet and save it on your hard drive. I have got the code working except for one thing which I want to add. I ...
0
votes
1answer
1k views

Can not get FileNameExtensionFilter to work

I can not get my JFileChooser to show only the extensions I want (text files). JFileChooser fc = new JFileChooser(); FileNameExtensionFilter textFilter = new FileNameExtensionFilter("Text ...
0
votes
3answers
684 views

Calling a variable from another method

i'm quite new in eclipse and having a problems with calling variables from other methods,such as: btnNewButton.addMouseListener(new MouseAdapter() { @Override public void ...
0
votes
1answer
102 views

Jave GUI for making a folder?

Greetings fellow programmers. I know how to make a folder in java (new File(strDirectoy)).mkdir();), but I was wondering if there's some sort of GUI similar to JFileChooser to make a new folder. ...
0
votes
0answers
172 views

having problems with with resizing an image to fit in a label

I'm having problems re-sizing an image to fit in a label. I hope you can help thank you in advance. I have a button "browse" to which I add an ActionListener a showOpenDialog is being open with the ...
0
votes
2answers
427 views

Embed JFileChooser in another component

My intention is to embed the JFileChooser in an other component, for instance, one can choose a file and click the "add" button, so that the file gets added to the JList(during run-time).I have ...
3
votes
1answer
1k views

Java JFileChooser with Filter to supposedly display ONLY directories fail to show just directories

(Thanks in advance! Please let me know if you need more info. Sample code at the bottom.) Problem I'm trying to solve: I'm trying to get this JFileChooser object to display only directories (and ...
0
votes
1answer
164 views

How to deny choose same file with JFileChooser

I am creating program whose function is that reading "n" .txt or .java files and of these files creates a UML diagram. I have reading method, but I came to problem with load more same files. I would ...
1
vote
1answer
136 views

Adding JFileChooser with no action causes panels to not render

This is a weird problem. I have a solution for it, but I don't know WHY the problem occurs in the first place. Observe the code below: // VERSION 1 public class test { public static void ...
1
vote
1answer
75 views

What happens to the JFilechooser object when open/cancel is pressed

What happens to the JFileChooser object when the open or cancel button is pressed in java. Does the object still exist or is destroyed?
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(); ...
3
votes
1answer
826 views

Java - setFileFilter issue

I'm constructing a JFileFilter on a JFileChooser, however an error occurs where I have the code setFileFilter and my IDE provides the information 'The method setFileFilter(FileFilter) in the type ...
0
votes
1answer
1k views

JFileChooser vs JDialog vs FileDialog

I need to know which of the 3 is best for me. My requirements are as follows in order of importance: Save and load files with ease. File type filter during file selection (not afterwards). Look and ...
0
votes
3answers
153 views

I want to restrict the dimensions of images users can select with a JFileChooser

I have a JFileChooser that lets users choose an image for themselves. I want to limit the images they can choose to ones with square dimensions, for example - width and height both 50 width and ...
0
votes
3answers
3k views

Saving with a JFileChooser

I am using a JFileChooser and the showSaveDialoge() and setSelectionMode(JfileChooser.DIRECTORIES_ONLY) to set where a preselected file will be saved and what it will be called. I want the user to be ...
0
votes
0answers
134 views

Java RepaintManager and JFileChooser

I am programming a simulation software using Java. I have a frame in which I paint with double buffering. Below is how I do that in constructor: repaintmanager = new UnRepaintManager(); ...
0
votes
1answer
284 views

Safari kills Java applet which launched an (idle) JFileChooser

I need to pop-up a file open dialog in a web page, and have the user select a file (not for upload!). Because I need access to the full file path, I cannot use a form/input. Thus, I use a signed Java ...
1
vote
3answers
1k views

Java: Show “*.java” in “File of type” as default in fileChooser

I have one problem in fileChooser. when fileChooser window come then I want to show .java as a default name in "File of type" and in list I want to show *.java, *.class, All File respectively. For ...
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
1answer
297 views

NullPointerException when using WindowsFileChooserUI

I get this run-time error, i am trying to make the java file chooser look like the windows one. error code: Exception in thread "main" java.lang.NullPointerException at ...
1
vote
2answers
241 views

Size of JFilechooser

I am trying to put a JFileChooser box on my GUI but if I just do this JFileChooser filechooser = new JFileChooser (); then it will just show a huge file selection window on the panel (I do not want ...
1
vote
2answers
569 views

Adding a file via jFileChoser to a jList

As i am new to java swing, i am finding a little difficulty in integrating the JFileChooser with JList. My goal is to select a file from the dialog-box(JFileChooser) and click 'add' so that it gets ...
-1
votes
3answers
124 views

Swing window doesn't appear after getting input from Console

I have a simple swing window in order to load files. This appear in the class analyzedLoad, in a function analyzedloads() JFileChooser fc = new JFileChooser(); JFrame frame = new JFrame(); int ...
0
votes
1answer
138 views

Making a dialog box that allows user to select file

I want to make a button in Java such that when user clicks it a box opens that allows the user to select a file. Note: For my application , I only need the file path. I do not need the exact file. ...
2
votes
1answer
2k views

How to select default FileFilter when creating a JFileChooser dialog?

Good afternoon all, I have an instance of a javax.swing.JFileChooser and I added a few choosable javax.swing.FileFilters using addChoosableFileFilter. However when I show the dialog (through ...
3
votes
2answers
160 views

Why does showOpenDialog() open more file choosers?

I am trying to create a 'Save to' file chooser. However when i execute the code and hit 'Open' a new filechooser window is opened. The code: int val = jFileChooser1.showOpenDialog(null); private ...
0
votes
0answers
245 views

Passing arrays from JFileChooser to another class Java

Help in passing arrays in another class this is the code that comes from a JFileChooser. in here I store the paths that is selected from the jfilechooser in path[] array public void ...
0
votes
3answers
515 views

Modification to JFileChooser to just display folder content

i m trying to develop an gui application which display tree of filesystem on left side and on right side it display selected tree nodes (folder)'s content . can any body tell me to do modification in ...
6
votes
1answer
380 views

Java, JFileChooser & Windows Network Shares WITH Password Protection

I need to present to the user or my application a dialogue in which that point to a particular file so naturally the easiest choice is to use a JFileChooser. However the file that needs to be ...
1
vote
1answer
487 views

Selecting 'Computer' or 'Libraries' in Java's JFileChooser yields a strange File object

I'm using JFileChooser in a very standard "Save As" situation. A am generating a file, and the user is picking where to save it. Confusingly, the user can pick number of "not real" folders. In ...
-1
votes
3answers
190 views

how to display more than image in JFrame?

To display all the contents of a folder of .jpg files, should I use a JFileChooser or JTree?
3
votes
1answer
2k views

Setting file creation timestamp in Java

I know setting the creation timestamp doesn't exist in Java because Linux doesn't have it, but is there a way to set a file's (Windows) creation timestamp in Java? I have a basic modification ...
1
vote
1answer
297 views

I need to display the file name without the extension in JFileChooser(open mode). How?

I use 'JFileChooser' in open mode. I need to display the 'file name' field without the extension. How?? I know the FileView. It remove extensions in file system's files, but it leaves the expansion ...
0
votes
4answers
613 views

How to convert String to a file Name

public class saveButtonListener implements ActionListener{ public void actionPerformed(ActionEvent ev){ JFileChooser chooser= new JFileChooser(); String ...
0
votes
3answers
248 views

showOpenDialog() again if opened file is not XML

I made a simple application to open only XML files using JFileChooser. How can I show the open dialog again and again until I open correct XML file or press cancel button?
-2
votes
1answer
200 views

unable to read files from a directory using JFileChooser

This is a sample folder structure : mahesh aaa(folder) aa(subfolder) a1(file) xx(file) bbb(folder) bb(subfolder) b1(file) yy(file) ccc(folder) ...
0
votes
3answers
2k views

File saved with JFileChooser showSaveDialog even on 'Cancel'

I have a file saved that works fine apart from one problem. When the cancel button is pressed a copy of the file is saved in the java directory. This only happens when the cancel button is pressed, if ...
1
vote
1answer
210 views

Java - JFileChooser Images

This may seem like a stupid question, but I need to know where the images used for JFileChooser are located. By images, I mean the image of a file or folder next to the file name. Here is a picture ...
0
votes
1answer
167 views

Set JFileChooser current dir to remote dir

I have to set current dir in JFileChooser to remote dir(windows share), but it doesn't work. JFileChooser chooser = new JFileChooser(); chooser.setCurrentDirectory(new File("\\\\192.168.11.11")); ...
0
votes
1answer
155 views

filesharing from 2 computers.

Well, I have this program, the download option is working fine. I can access the other computer and download the file from it to my desktop, but the upload is a problem. When I choose the file, the ...
1
vote
2answers
480 views

JFileChooser, want to lock it to one directory

I have this program where u can download files and i want the JFileChooser to be locked to one folder(directory) so that the user cant browse anything else. He can only choose files from for example ...
1
vote
1answer
402 views

How to make jFilechooser open specific directories with double click?

I'm working on an application that visualizes datasets which are stored in directories ending with ".D" I would like my jFileChooser to NOT enter into such directories and instead act like it would ...
2
votes
1answer
148 views

showing predefined file at File Chooser Option in Java Swing

So, i am showing a file chooser dialog using: JFileChooser c = new JFileChooser(); int rVal = c.showSaveDialog(this); if (rVal == JFileChooser.APPROVE_OPTION) { ...
0
votes
0answers
149 views

How to replace the simple panel when right click on the window of JFileChooser with something like the Context Menu of Windows

I'm writing a simple Java application that uses JFileChooser. However when interacting with the JFileChooser Panel, I want every time I right click on a file, it should trigger the context menu we ...
1
vote
3answers
976 views

JFileChooser getCurrentDirectory returning wrong current directory?

I am using JFileChooser in an app to browse for a directory however when I select the directory it returns the path to the folder above the folder I selected. i.e. I select "C:\Test" and it returns ...
0
votes
4answers
145 views

Replace squares with \n

I have a method to get text from a JTextArea and save in a txt file. It all works fine but text is saved in a straight line with little empty squares instead of \n. I would like to replace these ...
3
votes
3answers
4k views

Add .txt extension in JFileChooser

I have a method that get text from a JTextArea, create a file and write text on it as code below: public void createTxt(){ TxtFilter txt = new TxtFilter(); JFileChooser fSave = new JFileChooser(); ...
0
votes
2answers
529 views

Saving already Opened File in JFileChooser Java?

How to save a file if it is already opened without opening the FileChooser dialog like notepad ? It took me so much time to figure out. I've searched the net but could not find something could help me ...
3
votes
3answers
16k views

JOptionPane YES/No Options Confirm Dialog Box Issue -Java

I've just started using JOptionPane and I spent 30mins trying to fix this. I'm pretty sure I'm doing something wrong. I've created a JOptionPane and has only 2buttons YES_NO_OPTION When The it is ...

1 3 4 5 6 7 9