读取图像上传的位置

发布于 2024-12-08 12:29:17 字数 540 浏览 0 评论 0原文

我想知道这是否可能。我的要求之一是允许用户上传图像,为这些图像生成新名称,并使用上传图像的文件夹中的新名称重命名图像。

我实现了第一部分,即基于此博客上传图像 http://www.raistudies.com/spring/spring-mvc/file-upload-spring-mvc-annotation/

它工作正常。但我无法找到一种方法来读取这些图像上传的位置。通常,用户将在本地系统上映射网络驱动器并从这些网络驱动器上传这些图像。所以我想知道是否有可能读取该位置。

任何意见将不胜感激。

更新:我尝试使用 jquery 读取输入字段中的值,但这只是给我图像名称而不是完整路径。例如,C:/Images/OnLoc/abc.img 给了我 jsut abc.img 但我想要完整的路径,即 C:/Images/OnLoc/abc.img

谢谢, 拉克什米

I want to know if this is even possible. One of my requirement is to allow users to upload images, generate new names for those images and rename the images with the new names in the folder from which they were uploaded.

I implemented the first part i.e uploading images based on this blog http://www.raistudies.com/spring/spring-mvc/file-upload-spring-mvc-annotation/

It works fine. But I am unable to find a way to read the location from where these images are uploaded. Usually users will map network drives on their local system and upload these images from those network drives. So I want to if its even possible to read the location.

Any input will be greatly appreciated.

Update: I tried using jquery to read the value in the input filed, but this just give me the image name and not the complete path. eg., C:/Images/OnLoc/abc.img gives me jsut abc.img but I want the complete path i.e C:/Images/OnLoc/abc.img

Thanks,
Lakshmi

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

秋日私语 2024-12-15 12:29:17

这取决于。如果您使用的是CommonsMultipartFile,那么getOriginalFilename方法可能除了文件名之外还返回路径数据。 根据 API 文档

这可能包含路径信息,具体取决于所使用的浏览器,但通常不会包含除 Opera 之外的任何浏览器。

所以简短的回答可能是否定的。

It depends. If you are using CommonsMultipartFile, then the getOriginalFilename method might return path data in addition to the filename. As per the API docs:

This may contain path information depending on the browser used, but it typically will not with any other than Opera.

So the short answer is probably not.

左岸枫 2024-12-15 12:29:17

当用户选择要上传的文件时,您可以使用 JavaScript 将位置存储在隐藏字段中,然后当用户提交表单时,从表单 bean 中获取值。

You can use JavaScript to store the location in an hidden field when user selects a file to upload and then when user will submit the form, get the value from form bean.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文