It is possible to access HTML DOM from an applet using netscape.javascript JSObject API. However, if I query a value of a input type="file", on some browsers (Opera) I get a full path to a selected file, but on other browsers (Firefox, Chrome) just a file name without path.
Is it possible, having an HTML input type="file", to figure out the full path to the file selected in it from a Java applet?
The reason why I bother: signed applets can access file system, and browsers' file selectors are a lot nicer than Java swing one.