使用sdk3上传文件?

发布于 2024-08-31 04:44:38 字数 60 浏览 1 评论 0原文

如何使用sdk3上传文件?我正在使用 flex 和 spring 开发我的项目 我正在使用jboss服务器

How do I upload files using sdk3? I'm developing my project using flex and spring
iam using the jboss server

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

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

发布评论

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

评论(1

花辞树 2024-09-07 04:44:38

在 Flex 方面,您必须创建一个 FileReference 对象并使用 upload 方法上传文件。 upload 方法需要一个 Request 对象,它是要处理上传的 Spring 控制器的 URL。

在服务器端,您可以有一个 CommonsMultipartResolver,因为您不会使用 spring beans..您将必须使用类似这样的东西从请求中获取文件:

 MultipartActionRequest multipartRequest = (MultipartActionRequest) request;
 MultipartFile multipartFile = multipartRequest.getFile("file");

希望这有帮助,
问候,
阿卜杜勒·拉奥夫

On the flex side you will have to create a FileReference object and use the upload method to upload the file. The upload method requires a Request object which is the URL of your Spring controller that is going to handle your upload.

On the server side, you can have a CommonsMultipartResolver and since you will not be using spring beans.. you will have to get the file from request using something like this:

 MultipartActionRequest multipartRequest = (MultipartActionRequest) request;
 MultipartFile multipartFile = multipartRequest.getFile("file");

Hope this helps,
Regards,
Abdel Raoof

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