javaws does not work with de_DE.UTF-8 (1.6.0_43)

xGvzaqte6

New Member
As Java 7 from Oracle does not allow me to create a shortcut for an important application I wanted to go back to Java 6 from Apple on my Mountain Lion (10.8.3) system. It seems pretty easy as Apple also published a Support document describing how to do it.After going those steps at first it looks like all worked out.\[code\]systemname:~ login$ java -versionjava version "1.6.0_43"Java(TM) SE Runtime Environment (build 1.6.0_43-b01-447-11M4203)Java HotSpot(TM) 64-Bit Server VM (build 20.14-b01-447, mixed mode)\[/code\]Trying to start the JNLP however I get the message that I have to download the Java Runtime environment. So I tried the javaws command in the Terminal\[code\]systemname:~ login$ javawsJava Web Start splash screen process exiting ...Can not find message file: No such file or directory\[/code\]Then after some research here and in the web I try to add the localization\[code\]systemname:~ login$ LANG=en_US.UTF-8 javawsJava Web Start: Usage: javaws [run-options] <jnlp-file> ... ... ... -association install associations as if user allowed prompt \[/code\]Great it works. So I confirm my system settings:\[code\]systemname:~ login$ localeLANG="de_DE.UTF-8"LC_COLLATE="de_DE.UTF-8"LC_CTYPE="de_DE.UTF-8"LC_MESSAGES="de_DE.UTF-8"LC_MONETARY="de_DE.UTF-8"LC_NUMERIC="de_DE.UTF-8"LC_TIME="de_DE.UTF-8"LC_ALL=\[/code\]and then try it explicitly with the system locale:\[code\]systemname:~ login$ LANG=de_DE.UTF-8 javawsJava Web Start splash screen process exiting ...Can not find message file: No such file or directory\[/code\]It seems that 2013-002 does not support German UTF-8 anymore. Can anyone confirm that or tell me what I maybe did wrong or if there is a way/workaround to get it working again with my localization?Thanks, Martin
 
Back
Top