How to use the utf-8 charset encoding for files' URL
Hello,
I have to load images wich names contain accents. So I used this
ImageIcon image_file =new ImageIcon();
image_file.setImage(ImageIO.read(new URL("file://" + URLDecoder.decode(ThumbUrl,"UTF-8"))));
But I still have a java.io.FileNotFoundException.
Have you please any solution.
Thanks in advance.

