使用sdk3上传文件?
如何使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Flex 方面,您必须创建一个 FileReference 对象并使用 upload 方法上传文件。 upload 方法需要一个 Request 对象,它是要处理上传的 Spring 控制器的 URL。
在服务器端,您可以有一个 CommonsMultipartResolver,因为您不会使用 spring beans..您将必须使用类似这样的东西从请求中获取文件:
希望这有帮助,
问候,
阿卜杜勒·拉奥夫
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:
Hope this helps,
Regards,
Abdel Raoof