I think this will work only on an English language Windows installation:
System.getProperty("user.home") + "/Desktop";
How can I make this work for non English Windows?
|
feedback
|
|
I think this is the same question... but I'm not sure!: ? Reading it I would expect that solution to return the user.home, but apparently not, and the link in the answer comments back that up. Haven't tried it myself. I guess by using JFileChooser the solution will require a non-headless JVM, but you are probably running one of them. | |||
|
feedback
|
|
Seems not that easy... But you could try to find an anwser browsing the code of some open-source projects, e.g. on Koders. I guess all the solutions boil down to checking the If you need a more general solution I would try to find an open-source application you know is working properly on different platforms and puts some icons on the user's Desktop. | |||
|
feedback
|
|
You cannot do this without asking Windows. What is it you want to do with the users desktop? | |||
|
feedback
|
|
This might be a little complicated to achieve but you can call SHGetSpecialFolderPath from the win32 api from java | |||
|
feedback
|
|
This is for Windows only :
| |||
|
feedback
|