A GUI component that allows to navigate over the file system, selecting files and folders of interest.
0
votes
2answers
196 views
jsp read filename from servlet impossible?
I've got a really simple problem.
I'm not able to read the file name from the (jsp) file-chooser in servlet.
Normally I can get any input data with request.getParameter("name");
Can anybody tell me ...
0
votes
2answers
26 views
Java: how to locate the value that points to our directory files
In the code given below, taken from the JAVA API page for class JFileChooser:
JFileChooser chooser = new JFileChooser();
FileNameExtensionFilter filter = new FileNameExtensionFilter(
"JPG & ...
2
votes
1answer
134 views
javafx FileChooser Mac OS NSInternalInconsistencyException
I am trying to open a fileChooser using javafx FileChooser I'm assigning a listner to the FXML button via the controller the application loads fine, however when I click the button the file chooser ...
2
votes
1answer
224 views
How to do a modal FileChooser in JFXPanel?
I want to show a FileChooser dialog on top of an awt app which uses a JFXPanel.
As Window for showOpenDialog, I use getWindow() of the Scene set to that panel. But the file chooser appears behind the ...
1
vote
1answer
15 views
DirectoryChooser - multiple directories
JavaFX - Is it possible to choose multiple directories at once with DirectoryChooser?
Or is there any way how to do this without DirectoryChooser?
0
votes
1answer
53 views
How do I use Google doc picker with html service
I am working on a Google apps script that uses html service. I want to provide the user with a file chooser so they can choose a file from their Google drive.
I have seen two different API's that ...
0
votes
1answer
323 views
Can AWT file choosers not access Aliases in OSX?
I need to use AWT file choosers for my java app because we want to give users the native mac file chooser. Yes I know abut quaqua and we use it, but it does not use the native file chooser and mac ...
0
votes
0answers
13 views
Uri returned after ACTION_GET_CONTENT from gallery is empty for a video files
I am using this code to let user pick file by using available applications:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
...
0
votes
0answers
186 views
Share file via webview with working filechooser
I have a webview built with filechooser working for several different versions of Android. I can successfully push the "browse for file" or "choose file" option on a website and browse for a desired ...
0
votes
0answers
26 views
FileChooserBuilder: whole path being displayed on windows
I'm having problem using filechooser builder on windows. Its works as expected on OSX by only displaying the directory you are in, in the dialog text box and user can then remove dir name and enter ...