-5
votes
0answers
88 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
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
68 views

Java swing file chooser date filter or file dialog date filter

give sample code for getting files of current date or req date in file chooser or file dialog? i need to filter files with date in file dialog?
2
votes
1answer
117 views

inserting file path into database removes \

I am new to java. I want to insert the file path chosen from FileChooser into database. But when I try to do so, the path is correct until the query statement, and after entering it into database, it ...
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 ...
2
votes
2answers
392 views

JFrame FileChooser get file directory

I was doing an assignment. Basically the assignment is done but I was trying to make it better by adding a GUI to it. But I was encountering some issue on FileChooser because I don't quite understand ...
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
112 views

getting result for startActivityForResult() in normal class

I am working on saving PDF from internet. The class I am using, to download pdf is a normal class "FileChooser.java", not an activity class. Now, I want to open a Activity to browse through the SDCard ...
1
vote
2answers
108 views

Can someone help me understand calling an Intent to select a file?

I have this code that I have semi working. I want it to pull up a file selector and then return the file chosen into a manipulable format. Maybe File or String. I read the Android Documentation on ...
1
vote
2answers
1k views

java jfilechooser to list only “hello*.txt files” and no directory changing

I am trying to use JFileChooser to select files with this name format: LS48*.drv. at the same time I want to limit the user to look into only a specific directory say c:\data. So I don't want the ...
1
vote
3answers
369 views

Java write data to a file and download it?

I am new bi to Java, facing an issue with desktop application. I have to write data and output it as "data.txt"(means without writing file to a fixed location) and let the user download this file. I ...
2
votes
1answer
222 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 ...
0
votes
2answers
136 views

How to create something similar to JFileChooser in Java?

I am trying to make a frame similar to a JFileChooser. I have a scrollpane and 2 toggle buttons, one for list view, and other for icons view. I will be using CardLayout on the scrollpane. However, I ...
1
vote
0answers
188 views

Swing FileChooser / FileFilter [duplicate]

Possible Duplicate: adjust selected File to FileFilter in a JFileChooser I have a JFileChooser with a FileFilter (txt, doc, odt) and I want to save an existing file. So I open the file ...
0
votes
1answer
370 views

Filechooser: get selected postfix

I have the following Method. In the fileschooser I can select a file or just type in the name to create a new one. This is working fine. But how can I check programmatically which extension was chosen ...
28
votes
7answers
3k views

Does Swing support Windows 7-style file choosers?

I just added a standard "Open file" dialog to a small desktop app I'm writing, based on the JFileChooser entry of the Swing Tutorial. It's generating a window that looks like this: but I would ...
0
votes
1answer
139 views

Problem loading image in the correct frame

This is my code from the main frame window: public class DynamicalSystem { public static void createAndShowGraphic() { //Create and set up the window. JFrame frame = new ...
1
vote
2answers
1k views

Problem with loading image in java with FileChooser

I have write a class filechooser where I can choose files. I had searched for a class that loads images but nothing. My filechooser class can made a panel with button open and save. When I press ...
0
votes
3answers
519 views

Autocomplete in a Java File Chooser

I'm looking for a way to add auto complete functionality in Java a File Chooser Dialog. Seems Java Swing JFileChooser doesn't support that. The only alternative I found is gtk FileChooser I would love ...
0
votes
1answer
139 views

JFileChooser or need to use something else

I am plannind to do a POC and the basic requirements for my application: I am trying to import a file (or) files - Option for MultiSelect - Options for thumbnails (apart from Details and List) mainly ...
1
vote
3answers
723 views

java file picker with inline thumbnails

I need a nautilus-style file picker in java, where the files are shown "gallery-style" with a customisable thumbnail for each file. Is it possible to make the standard open file dialog do this? If ...
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 ...
1
vote
3answers
2k views

Using a FileDialog to choose a file of a certain extension

I am trying to use a FileDialog file chooser because I really need java app to have the native apple file chooser (I know we all hate hate the lack of portability but this is what I need). I am ...