博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
flex利用webservice上传照片
阅读量:5034 次
发布时间:2019-06-12

本文共 1967 字,大约阅读时间需要 6 分钟。

WebService端代码

///           /// 上传文件到远程server          ///           /// 文件流          /// 文件名称          /// 
字符串
[WebMethod(Description = "上传文件到远程server.")] public string UploadFile(byte[] fileBytes, string fileName) { try { MemoryStream memoryStream = new MemoryStream(fileBytes); //1.定义并实例化一个内存流,以存放提交上来的字节数组。 FileStream fileUpload = new FileStream(Server.MapPath(".") + "\\" + fileName, FileMode.Create); ///2.定义实际文件对象,保存上载的文件。 memoryStream.WriteTo(fileUpload); ///3.把内存流里的数据写入物理文件 memoryStream.Close(); fileUpload.Close(); fileUpload = null; memoryStream = null; return "文件已经上传成功"; } catch (Exception ex) { return ex.Message; } }

Flexclient代码

转载于:https://www.cnblogs.com/blfshiye/p/4007264.html

你可能感兴趣的文章
341. Flatten Nested List Iterator
查看>>
Atitit. 单列索引与多列索引 多个条件的查询原理与设计实现
查看>>
atitit.交换机 汇聚上联、网络克隆和标准共享的原理与区别
查看>>
Atititcmd cli环境变量的调用设置与使用
查看>>
PHP设计模式(三)
查看>>
JavaScript 性能分析新工具 OneProfile
查看>>
PHP SPL他们留下的宝石
查看>>
void及void指针含义的深刻解析
查看>>
hibernate官方新手教程 (转载)
查看>>
POJ 1011 Sticks
查看>>
使用aggregate在MongoDB中查找重复的数据记录
查看>>
[selenium webdriver Java]处理弹出窗口
查看>>
Spring mvc 字节流
查看>>
平时十五测
查看>>
Coursera-C程序设计进阶-编程题#1:单词翻转
查看>>
2014年11月05日
查看>>
ASP.NET MVC请求管道中的19个事件
查看>>
线性表操作
查看>>
numpy 与 pandas
查看>>
ural1470 UFOs
查看>>