我需要获取用户所选文件的完整文件路径。
HTML
<input name="attachFiles" id="attachFiles" type="file"/>
爪哇
HTMLInputElement attachFiles = WebMisc.getHTMLInputElement(webEngine, "attachFiles");
final String filename = attachFiles.getValue();
但是,文件名始终为C:\ fakepath \&lt;文件名&gt;
如何获得真正的完整文件路径?
这用于具有网络外观的UI。所有真正的工作仍由我自己完成,而不是WebEngine。