Dear all.
I'm Japanese user.
I got same problem too.
My system...
Server
CentOS3
Tomcat6
Jdk6update13
subsonic.war
Client
Windows2000/XP
Left menu and playlist's Japanese filenames are not decode correctly.
Each OS's are having default filename's encoding charctor code.
It's can get and set following code.
# get
java.lang.System.getProperty("file.encoding");
# set
java.lang.System.setProperty("file.encoding", encoding);
http://java.sun.com/j2se/1.4.2/docs/api ... ystem.html
Maybe following functions are effected by file.encoding property.
java.io.File.getName();
java.io.File.list();
java.io.File.listFiles();
etc.
Please join some codes for getting filenames part.
It's hopefully can overwrite the property by web.xml's setting.
Because Japanese are many system encoding.
Old Linux : EUC-JP
Old Windows : Shift-JIS
Latest Linux : UTF-8
Latest Windows : UTF-8
I'd like to save UTF-8 named files on EUC-JP Linux.
But EUC-JP Linux would return EUC-JP by GetProperty("file.encoding").