Skip to content

Tag: jfilechooser

How to save an image using JFileChooser

Background info: I’ve made a program that uploads an image using JFileChooser and have made fill in the space of the JFrame. My Question: I’ve attempted implementing my method on a save button and so far I can pull up the JFileChooser but it will not actually save the image. So how would I go abou…

Possible to remove Title bar from JFileChooser?

I am trying to display a simple JFileChooser that has no Titlebar. Below is the example code: So essentially I want the Border I set to be the top level Title bar. Example image: So far I have had zero luck achieving this, nor found any others looking for a similar appearance. Appreciate the help! Cheers Answ…

JFileChooser change default directory in Windows

I want to change the default directory of my JFileChooser to “My Music” on Windows. This directory is C:UsersFreMusic on my account because my username is Fre The default is set on C:UsersFreDocuments (depends on OS i think). How can I change this? Answer You can use the API method setCurrentDirec…