我如何访问本地文件系统的资源并从浏览器操作它们
我需要一种技术来:
a)从浏览器、网页浏览到用户文件系统(经过他的授权)
b) 让用户选择一个文件夹并搜索图像
c) 该文件夹可以包含巨大的 jpg 图像(最多 20Mb)
d) 在浏览器内显示已调整大小的版本,即非常小的版本的创建图像
e) 玩弄缩略图(重新排序、重命名、关联一些选项),与网页交互
f) 让用户选择要上传的图像 g) 完成上传所有巨大的原始文件大小后,
我无法使用外部客户端。
插件没问题。
有没有一种技术能够做到这一点?
我决定尝试在 Java 中实现所有“本地代码”(文件夹和图像选择、缩略图创建)并将缩略图传递到服务器。通过 Ajax 应用程序,将缩略图传递到小程序所在的网页,并让用户与缩略图进行交互。最后尝试调用小程序来上传原始文件。
您认为这种方法有技术替代方案吗?
I need a technology to:
a) From the a browser, a web page, browse to the user filesystem (with his authorization)
b) Let user select a folder and search for images
c) The folder can contain huge jpg images (up to 20Mb)
d) show a resized version, very tiny version, of the founded images inside the browser
e) play with the thumbnail (reorder, rename, associate some options), interacting with the web pages
f) let the user select which image will be uploaded
g) when finished upload all the huge original file size
I cannot use external client.
No problem for plugins.
Is there a technology out there capable to do this ?
I've decided to try to implement in Java all the "local code" (the folder and image selection, thumbnail creation) and pass thumbnail to the server. With an Ajax application pass the thumbnail to the web page where the applet reside and let the user interact with the thumbnail. At the end try to recall the applet to upload the original files.
Are there technological alternatives to this approach in your point of view ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您已经掌握了 Java 技术,如果您愿意要求最终用户拥有 Java,我会选择 签名 Java 小程序。您可以使用 Java Advanced Imaging (JAI) 进行图像操作。
Since you're already up on Java technologies, if you're happy to require that the end user have Java I'd go with a signed Java applet. You can use Java Advanced Imaging (JAI) for the image manipulation.