可以操纵的值来自签名的java应用程序?
我正在尝试将客户端 JWS 应用程序与 jQuery Uploadify 插件。我正在使用 JWS 应用程序进行客户端文件操作,然后将其上传到我的网络服务器。我的 Java 经验有限,因此我想在提交文件时利用 Uploadify 获得更好的用户体验。我知道 JS 有安全限制,不允许这样做,但我认为签名的 Java 应用程序可能不会有这个问题。
I'm trying to use a client-side JWS application with the jQuery Uploadify plugin. I'm using a JWS app to do client-side file manipulation which I then want to upload to my web server. I've limited Java experience, so I wanted to leverage Uploadify for a better user experience while submitting the file. I know JS has a security restriction which won't allow this, but I figured a signed Java application may not have this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答是否定的。
更长的答案是您不允许以任何方式修改或操作 HTMLFileInput 对象。这包括在同一页面上使用 JavaScript,以及签名/未签名的 Java 应用程序。
这样做是出于安全原因,并且没有解决方法。
The short answer is no.
The longer answer is you are not allowed to modify or manipulate an HTMLFileInput object by any means. This includes the use of JavaScripts on the same page, and also signed/unsigned Java applications.
This is done for security reasons, and there are no workarounds for this.