如何从JavaFX WebView获取文件路径?

时间:2014-08-29 11:30:43

标签: java security webview javafx javafx-webengine

我需要获取用户所选文件的完整文件路径。

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。

0 个答案:

没有答案