将文件上传到服务器的特定路径
在 Flex 中,我想从本地系统上传特定文件到服务器。该怎么做? 谢谢。
In Flex i want to upload a particular file to server form local system.how to do it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果不使用
FileReference.browse()
后跟upload()
,就无法上传文件。如果可能的话,那就意味着网页可以在用户不知情或不同意的情况下从用户的计算机上读取任何文件。你能想象这样做的后果吗?
You cannot upload a file without using
FileReference.browse()
followed by anupload()
. If it was possible, that would mean that a webpage can read any file from the user's machine without his knowledge or consent.Can you even imagine the consequences of that?
如果您要发送一些图像或文本,则可以上传 byteArray。 http://developer.amazonwebservices.com/connect/thread.jspa?messageID= 76422
You can upload byteArrays though if you are sending some images or texts. http://developer.amazonwebservices.com/connect/thread.jspa?messageID=76422