0
votes
3answers
44 views
JFileChooser browsing a remote file system
I am trying to Implement a JFileChooser that allows a user to select files on a remote system via ftp.
Everything I've read says this can be accomplished by extending FileSystemVi …
0
votes
0answers
50 views
Change color of JFileChooser
I was trying to change the color of my JFileChooser following some ideas from this post:
http://stackoverflow.com/questions/1257474/change-color-of-windowsplacesbar-in-jfilechoose …
0
votes
3answers
131 views
Change color of WindowsPlacesBar in JFileChooser
This is a followup question to my previous one:
http://stackoverflow.com/questions/1241984/need-filedialog-with-a-file-type-filter-in-java
I've got a JFileChooser (using that ins …
0
votes
1answer
16 views
Initializing JFileChooser with a non-existing directory
In our installation program I want to enable users to use install directory which, obviously, does not exist yet. I want that when the Browse button is pressed, a JFileChooser dial …
0
votes
0answers
34 views
uploading photos with java and sqlite
I need to upload photos into my application and save them to my sqlite database.
I am using the swing filechooser to choose the file then I am converting the file to a fileinputs …
4
votes
5answers
986 views
JFileChooser embedded in a JPanel
EDIT: I've posted a clarification as an answer, see below for more details.
I am writing a java program that needs a file open dialog. The file open dialog isn't difficult, I'm h …
0
votes
1answer
117 views
Save using JFileChooser with pre-populated file name?
Hi,
I am trying to make saving and loading easier for some GUIs that I've made, and I would like to be able to pre-populate a filename for the user on save.
Getting the JFileChoo …
1
vote
2answers
145 views
JFileChooser for directories on the Mac: how to make it not suck?
The JFileChooser in "directories only" mode on the Mac has two serious, crippling problems:
1) You cannot create directories with it
2) You cannot switch drives
This is rather a …
1
vote
3answers
202 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). …
1
vote
1answer
51 views
How can I get the functionality of `<input type=”file” of HTML in Swing?
How can I get the functionality of <input type="file"> of HTML in Java Swing?
1
vote
2answers
235 views
Part of path returned from Directories Only JFileChooser is sometimes duplicated
In my application, I want the user to be able to select a directory to store stuff in. I have a text field that I'm using to display the directory they've chosen. If they just clic …
1
vote
3answers
223 views
JFileChooser OS X
JFileChooser looks nothing like the native widget. I seem to remember reading some hack to get it look like the native widget but searching for it know i can't seem to find it agai …
1
vote
3answers
365 views
How do I add a file browser inside my Java application?
I am new to Java progamming and am building a application that will add, display and remove files from a given folder location.
I have added files using JFileChooser and know how …
0
votes
1answer
173 views
How can the disable file operation, file selection and filter panel from JFileChooser(JAVA Swing)?
I need to embed JFilceChooser dialogbox in a Panel. I only need the file and folder view. How can i disable others panel that are included in dialogBox i.e(file operation, file sel …
3
votes
2answers
500 views
Alternative to JFileChooser
I've a request to make some changes to a little applet that currently use a JFileChooser.
One of the main complaints is that the file chooser is a pain in the ass to use because it …
