JFileChooser is a Java Swing component to provide a simple mechanism for the user to choose a file.
-1
votes
4answers
35 views
How to save the text file in a path given by JFileChooser?
I need to save a text File which is already created in a particular path given by JFileChooser. What I do basically to save is:
public void actionPerformed(ActionEvent e) {
JFileChooser chooser = ...
0
votes
2answers
20 views
checking file extension with regular expression
I am writing a program that opens a file and loads all the file contents into a JTextArea. I want to restrict users from being able to open different file formats. The formats i want to accept ...
1
vote
1answer
30 views
JFileChooser and Jbutton errors
following this question, error message with JButton and JFileChooser, I want to have a JButton to browse a file using JFileChooser. This is the code we have:
package main;
import java.awt.Component;
...
0
votes
2answers
43 views
error message with JButton and JFileChooser
I want to have a button with a JFileChooser action. This is the code that I wrote:
public class Main {
private static String fullPath;
private JFileChooser inputFile;
public static void main(String ...
1
vote
1answer
30 views
Load an image into a JPanel in an applet
base on this thread :Java: Load image from file, edit and add to JPanel
i tried to load na image into a JPanel but its not painting it,so here s the deal, as suggested i have created a new class file ...
-1
votes
1answer
63 views
JFileChooser - “cancel” and “open” buttons [closed]
I have used "NetBeans" to create Jframe class with a jFileChooser panel.
When I click "cancel" button nothing happens and I get an exception.
Always with netbeans I have created an event:
private ...
2
votes
1answer
45 views
Using FileDialog on MacOS X instead of JFileChooser for file AND directory
Here's my problem. I have a Java application that runs on MacOS X. Right now I'm trying to make this application available on the Mac App Store. Unfortunately, Apple always reject my application ...
0
votes
2answers
60 views
Cancel selecting a file within JFileChooser without closing the dialogue
I am trying to implement a "save as" dialogue using a JFileChooser. The dialogue is supposed to give the user the ability to type a filename and click save, at which point the new File object will be ...
1
vote
2answers
38 views
Save dialog doesn't add extension to file
I have a button that opens a save dialog window with default extension filters set. When I save a file it creates it in the correct folder, but it doesn't add the extension on the end. How would I go ...
0
votes
0answers
39 views
Having exceptions while using JFileChooser to open an excel file and reading the data
I am trying to open an excel file from jMenu and display the whole table in jFrame. The JFileChooser and JTable part I have in a ImportExcel class, the JFrame part is in Home class which has initUI() ...
0
votes
0answers
13 views
Java: fatal error, access violation in Java_sun_awt_shell_Win32ShellFolder2_compareIDsByColumn
The program pops up a JFileChooser, and if the user goes into details view then clicks on the column headings, the program dies completely with an exception access violation and the problematic frame ...
2
votes
1answer
36 views
Start a JFileChooser with files ordered by date
A recent question asked: How can I start the JFileChooser in the Details view? and the answer provided a nice technique for doing that.
I'd like to raise the aspiration here one level: given that I ...
0
votes
3answers
55 views
Check if a JFileChooser has 1 or multiple files selected
How do I check if my JFilechooser has one file or multiple files selected?
0
votes
2answers
42 views
Setting FileChooserUI property in UIManager to the system's
I want to have my JFileChooser use the system's LookAndFeel, but have the rest of my components use Nimbus. Since each platform provides a different FileChooserUI, how would I set the FileChooserUI ...
0
votes
0answers
21 views
Protect java swing from network interruptions
I'm showing my ignorance here...
I am programming on a Linux system, with a network CIFS file system mounted at /mnt/network.
I am trying to be able to recover gracefully when I have a Swing ...
2
votes
1answer
57 views
File Change Detector In Java ( 95% implemented but require help in one case)
My Project is : File Change Detector: The input to the application will be a group of directories and files. When the application runs for the first time it will simply summarize the names and sizes ...
0
votes
3answers
48 views
JFileChooser on a Button Click
I have a button, clicking on which I want the JFileChooser to pop up. I have tried this
JButton browse= new JButton("Browse");
add(browse);
browse.addActionListener(new ClassBrowse());
public class ...
0
votes
1answer
53 views
Set filechooser Colors with Nimbus L&F
I'm using custom Colors with Nimbus. After hours of searching I can't find out how to set the Background and Foreground colors for JFilechooser properly.
My (non working) code:
...
-1
votes
0answers
34 views
Stop JFileChooser from printing to console [closed]
I wrote a program which displays important information via the console. But I also want to use a JFileChooser for saving Files. My Problem is that file chooser prints a lot of weird things while ...
2
votes
2answers
51 views
How can I start the JFileChooser in the Details view?
I would like my JFileChooser to start in details view, instead of the "List" view that it starts in. How do you do that?
7
votes
3answers
162 views
How do you remove the Ctrl+C action on a JFileChooser?
I'm embedding a JFileChooser in my program in my own frame with other custom components in the frame. Here's a design of my app as it may help visualize my issues:
If you can't tell, the lists ...
-5
votes
0answers
83 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
0answers
40 views
Java - Calling System.setOut, System.setErr and JFileChooser.showDialog freezes application
Sorry for needing help so soon after my last question (here), but now I have another problem in the same application. This code:
PrintStream stdOut = new PrintStream(new StandardOutputStream(), ...
1
vote
2answers
39 views
JFileChooser Returns FileNotFoundException
More specifically, it does work, but ONLY if I choose a file that exists in the source folder where my program and its resources are. When I move a file to, say, the desktop or My Documents and try to ...
0
votes
3answers
44 views
How to set Filepicker in java swing to select only specific file ? eg . only files with .mo as extension
The file needs to be the input file for the tool to process it further.
I'm new to java.. would aprreciate any help.
Here's my current code I have for the filepicker.
private void ...
-1
votes
2answers
82 views
Starting a JFileChooser at a specified directory and only showing files of a specific type
I have a program utilizing a JFileChooser. To be brief, the full program is a GUI which allows users to manipulate PNGs and JPGs. I would like to make it so that the JFileChooser instantly opens to ...
1
vote
1answer
358 views
Create a save/save as dialog box in java that save a newly created file or an edited file
Java Beginner: Please help been working on this for days and my brain is dead.
I have created a java program (in eclipse) that has 3 menu: FILE, EDIT, HELP
once file is clicked it display 4menuBar: ...
0
votes
0answers
60 views
How to Drag and Select Files in a JFileChooser
I have a JFileChooser that I would like to select multiple files from. I want to be able to drag and select multiple files; having the same functionality as Ctrl and Shift (think your OS's folder, the ...
0
votes
2answers
39 views
Exclude root drive selection from JFileChooser in Swing
I have a requirement where a user browse through JFileChooser and selects a folder.
But while doing this selection the user should not be allowed to select root drive. By "Root Drive" I mean C: or D: ...
0
votes
1answer
28 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
35 views
JFileChooser won't compile
I'm trying to make a simple JFileChooser, but what I have done so far will not compile. The compiler is telling me that it cannot find the symbol 'class File' in Lines 66 & 80:
...
0
votes
2answers
54 views
Moving files in java
So far this is my code i would like to move the selected file to a path that i will define later in the code how do i get the path from the selcted file
import java.awt.Component;
import ...
0
votes
3answers
68 views
How do I use JFileChooser to save/load an array of ArrayList?
I have the following code:
ArrayList<String> [] hotelArray = (ArrayList<String>[ ]) new ArrayList[5];
for (int i = 0; i < 5; i++) {
hotelArray[i] = new ArrayList<String>();
}
...
1
vote
2answers
94 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
2answers
50 views
Putting files within a zip folder into an array of strings by path
First the user browses for the zip file containing their Java project using a JFileChooser which is limited to .zip extension only.
Then I want all the file paths to be stored as strings in an array.
...
1
vote
4answers
261 views
Using a JFileChooser with Swing GUI classes and listeners
This is my current menu :
public class DrawPolygons
{
public static void main (String[] args) throws FileNotFoundException
{
/**
* Menu - file reader option
*/
...
0
votes
1answer
89 views
Issues in using jfilechooser
I am using JFileChooser in my web project so that the client can download certain files from the server, But during testing whenever i click on the button that invokes the jfilechooser it pops up on ...
0
votes
3answers
55 views
JFileChooser doesn't disappear after cancelSelection()
I'm trying to close a JFileChooser. Could you, please, let me know why the cancelSelection method in the following snippet doesn't make it disappear after 5 seconds:
public static void main(String [] ...
1
vote
1answer
54 views
Executing file from JFileChooser [closed]
I have made a JFileChooser and say the chosen file is JavaScript, how could I execute that script in my application? If you want any more info, please ask!
1
vote
2answers
36 views
How do I set my FileFilter based on a Map in my custom ComboboxModel?
I'll briefly explain what I have going on and then provide some of my code.
I have a small GUI where I select an option on the JComboBox and then click a button that will open a JFileChooser which ...
0
votes
1answer
82 views
DocumentBuilder parse File from absolute Path
I have a basic Java-UI with an JFileChooser.
I try to parse the selected file with this Code:
Document document = builder.parse(getClass().getResourceAsStream(<SELECTED_PATH>));
Sadly i get ...
0
votes
2answers
155 views
JFileChooser within a JTable
all I'm attempting to create a new component to go inside of a JTable. It consists of a JTextfield that when clicked on spawns a JFileChooser so the user can browser the file system and select the ...
0
votes
1answer
41 views
In Attempt to Create a JFileChooser--public variables?
In my previous question, I've stated I'm somewhat new to Java's JFrame features.
I'm trying to create a JFileChooser that will get a directory in which a file named setup.exe will be saved. That's ...
2
votes
1answer
81 views
JFileChooser's anomaly with MyComputer in Windows
I created a file chooser using swing to select only images from a windows platform. I used a FileFilter to do that. The code of the accept() method overridden form the FileFilter class is:
public ...
0
votes
1answer
99 views
save image from image path
I implemented this code for browsing an image using JFileChooser but problem is I cannot implement code for saving image on local disk.
OR
If possible I directly want to display this image in a new ...
0
votes
1answer
57 views
showSaveDialog() doesn't show when app is deployed
I have to export my phonebook from database to some txt or pdf file. I use JFileChooser to choose destination where to save a txt/pdf file. While I have my aplication running in eclipse and tomcat ...
0
votes
1answer
97 views
JFileChooser to open a file from a JMenu
fileItem1is a JMenuItem when i click on fileItem1, this is how you would make it open a file and then just display the name of that file in the JFrame:
// open file
fileItem1.addActionListener(new ...
-1
votes
2answers
33 views
FileChooser getAttachement only from this Folder
How to make the user to select the file from only specified folder
int returnVal = fc.showOpenDialog(FileChooser.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = ...
1
vote
1answer
133 views
Implement a JFileChooser in Java following the MVC pattern
How to/what's the best way to handle a JFileChooser in an MVC architecture in Java? My controller is listening for events in the main GUI and it works for the buttons on it, i.e., the controller calls ...
0
votes
2answers
40 views
Save operation - File is not externally editable
I am using JFileChooser and it is working fine.
File a = new File(strSavepath);
JFileChooser fc = new JFileChooser(a);
Problem is that I am unable to edit the saved file manually using Notepad or ...





