Forum: Java Aug 9th, 2008 |
| Replies: 2 Views: 1,063 thx,the problem was solved using
String str = "RUNDLL32.EXE SHELL32.DLL,OpenAs_RunDLL";
r = Runtime.getRuntime();
Process p = r.exec(str + "C:\\test.txt"); |
Forum: Java Aug 8th, 2008 |
| Replies: 3 Views: 6,754 sorry, i don't know much about that
try here,maybe it helps
http://java.sun.com/j2se/1.4.2/docs/guide/resources/resources.html |
Forum: Java Aug 7th, 2008 |
| Replies: 3 Views: 6,754 ello
me,i prefer using the .properties files because you can keep connection settings in them ,for example, and then use java code to get them. This way if the settings will change you will only... |
Forum: Java Aug 7th, 2008 |
| Replies: 2 Views: 1,063 Hello
Please help me with the following: i am trying to open a file with a specific application using java. I am working on a desktop application.
The following code using java.awt.Desktop works... |