搜尋
首頁php教程PHP开发flex利用webservice上傳照片實作程式碼

WebService端代码 

/// <summary> 
/// 上传文件到远程服务器 
/// </summary> 
/// <param name="fileBytes">文件流</param> 
/// <param name="fileName">文件名</param> 
/// <returns>字符串</returns> 
[WebMethod(Description = "上传文件到远程服务器.")] 
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; 
} 
}


Flex客户端代码 

<?xml version="1.0" encoding="utf-8"?> 
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
xmlns:s="library://ns.adobe.com/flex/spark" 
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="application1_creationCompleteHandler(event)"> 
<fx:Script> 
<![CDATA[ 
import mx.controls.Alert; 
import mx.events.FlexEvent; 
import mx.graphics.codec.JPEGEncoder; 
import mx.rpc.events.FaultEvent; 
import mx.rpc.events.ResultEvent; 

protected function application1_creationCompleteHandler(event:FlexEvent):void 
{ 
var width :int = imgID.width; 
var height :int = imgID.height; 
var bitmapData:BitmapData =new BitmapData(width,height); 
bitmapData.draw(imgID); 

var byteArr:ByteArray = bitmapData.getPixels(new Rectangle(0,0,width,height)); 
var byteArr123:ByteArray =new JPEGEncoder().encodeByteArray(byteArr,width,height); 

webService.UploadFile(byteArr123,"123.png"); 
} 

protected function webService_faultHandler(event:FaultEvent):void 
{ 
Alert.show(event.fault.toString()); 
} 

protected function webService_successHandler(event:ResultEvent):void 
{ 
Alert.show(event.result.toString()); 
} 

]]> 
</fx:Script> 
<fx:Declarations> 
<!-- 将非可视元素(例如服务、值对象)放在此处 --> 
<s:WebService id="webService" wsdl="http://10.19.1.48/upImg/Service1.asmx?WSDL" fault="webService_faultHandler(event)"> 
<s:operation name="UploadFile" result="webService_successHandler(event)"></s:operation> 
</s:WebService> 
</fx:Declarations> 
<mx:Image id="imgID" x="186" y="103" width="583" height="397" source="file:/G:/360云盘/照片/2013Beijing MapOfSubway.jpg"/> 
</s:Application>

更多flex利用webservice上传照片实现代码相关文章请关注PHP中文网!

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

SublimeText3 Linux新版

SublimeText3 Linux新版

SublimeText3 Linux最新版

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

將Eclipse與SAP NetWeaver應用伺服器整合。