Tagged Questions
1
vote
2answers
101 views
how do I make jfilechooser only accept .txt
I trying to save my contact in my table but filechosser always setit to all file.
is there way I can set it to accept .txt only and make it default or the only option.
...
0
votes
1answer
86 views
How to save a file in .rtf format
I'm using an JFileChooser to make a save function.
But I want to save my files in a .rtf format how do I do this?
My code right now is:
@Override
public void actionPerformed(ActionEvent e) {
...
0
votes
3answers
474 views
How to save file using JFileChooser in Java? [closed]
I have following code. It saves file but with empty content. What's wrong with it?
public void saveMap() {
String sb = "TEST CONTENT";
JFileChooser chooser = new JFileChooser();
...
0
votes
2answers
272 views
How can i save .txt file at desired location using JFileChooser
Using following code i can store program.txt in a working project folder, but how can I use JFileChooser or any other option to save file at a selected location?
b2.addActionListener(new ...
1
vote
2answers
220 views
JFileChooser - Custom file name (create new file)
I may be missing something obvious in the JFileChooser API, but when I try and use a JFileChooser to save a file, I can only select pre-existing files to save to, not enter a new name and save to ...
-1
votes
1answer
214 views
JFilechooser for attaching & uploading a file [closed]
Can I get any example code for using JFilechooser to attach & upload a file using Java swing. Tried searching in google but couldn't get a right link. Just trying to learn how to browse and attach ...
5
votes
1answer
674 views
How to set a default file name to Swing JFileChooser?
I want to set a default file name as Untitled.txt in text-box of this JFileChooser. Can I set this?
1
vote
2answers
303 views
JFileChooser remote view
I've been implementing a JFileChooser as a view for remote file system. When getFiles() is called from the FileSystemView I send request to the remote system with the directory location data.
Then ...
0
votes
1answer
200 views
JFileChooser and .txt file parsing problems
I'm having trouble resolving a CCE. This assignment calls for
the user to open a .txt file at runtime and then have the compiler
do background parsing on particular regexes to determine if they
match ...
0
votes
0answers
180 views
JFileChooser - setting a fixed file name
I am making an application that works similar to a text editor with code highlighting.
When I try to save some text, I want a fixed file name to appear on the JFileChooser which will not change ...
1
vote
1answer
303 views
Getting a Path value from a JFileChooser in Windows XP
As the question states, I am trying to get a Path value, using JFileChooser. The returns from JFileChooser present me with two problems. First, the exact nature of what I am doing involves letting ...
0
votes
0answers
281 views
How to save with file chooser as an image
Im a newbie I just need to know how to save the uploaded file to my computer any help greatly appreciated. "fis" is what i want to save
int returnVal = fileChooser.showOpenDialog(this);
if ...
1
vote
2answers
219 views
Use JFileChooser without using a main declaration
Following my previous post in this link I have another problem .
Given the following code :
public class GuiHandler extends javax.swing.JFrame {
// GuiHandler is the class that runs the entire ...
1
vote
2answers
1k views
How to open files in Java Swing without JFileChooser
I'm using Java Swing (GUI) and I want to add a button to my project for opening files .
I don't like the JFileChooser since it opens a small window for browsing through the files
of the ...
0
votes
2answers
281 views
Converting a file from FileChooser to a string in Java
This is my first time using JFileChooser in Java and I'm currently attempting to convert the selected folder from a file type to a string such that I can write it to a JTextField on the GUI ...
0
votes
3answers
694 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 ...
1
vote
3answers
2k views
Writing 'getSelectedFile' as a String (Java)
open.addActionListener(new ActionListener(){
public void actionPerformed (ActionEvent e){
JFileChooser fileChooser = new JFileChooser();
...

