Trying the following method to open an Arabic URL:
String cmd = "cmd.exe /C start \"Open file\" \"http://ar.wikipedia.org/wiki/موسوعة\"";
Runtime.getRuntime().exec( cmd );
Unfortunately, the URL being opened is http://ar.wikipedia.org/wiki/??????
Any thoughts on why this is or how I could prevent this?
Before you ask why I don't use java.awt.Desktop.getDesktop().open(), it's because of this Sun bug: http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6457572