0
votes
2answers
192 views

Program to check whether extension of a file is .txt

I wrote a java code having an awt text field and a button, where if I click on the button, I can browse a file using JFileChooser. It needs to check whether the file has ".txt" extension or not.I ...
0
votes
2answers
80 views

Create file and save it to an dynamic storage

I create a file like this: PrintWriter out = new PrintWriter( new FileOutputStream( new File("C:/Users/.../Desktop/Server Recipe Log.txt"), ...
1
vote
2answers
103 views

JFileChooser is not modal under Linux

I use Red Hat 6.3 and JRE 1.7. When opening a file chooser out of an applet it is not modal. When clicking somewhere which is not the file chooser's area it moves behind the applet and the applet is ...
1
vote
1answer
1k views

Can I use java.awt.FileDialog to only allow the user to select folders

I'm trying to use FileDialog instead of JFileChooser to get more natural behaviour on OSX, especially important is the Favourites column with clear links to shared folders that are hidden under ...
0
votes
3answers
582 views

JFileChooser opens the regular file browser instead of the expanded one

Following my previous two posts here and another one here, the following code opens the regular file browser instead of the expanded one: public class GuiHandler extends javax.swing.JFrame { // ...
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 ...
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 ...
-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) ...
2
votes
2answers
359 views

JFileChooser from a command line program and popping up Underneath all windows

Ive implemented the jFileChooser in my command line program and it works, just as it should with only one annoying issue. It seems that it opens underneath every window with no alert of any kind. In ...