下面,我們就分別介紹如何通過Web Services從伺服器下載檔案到用戶端和從用戶端通過Web Services上傳檔案到伺服器。
一:通過Web Services顯示和下載檔案
我們這裡建立的Web Services的名稱為GetBinaryFile,提供兩個公用方法:分別是GetImage()和GetImageType(),前者返回二進位檔案位元組數組,後者返迴文件類型,其中,GetImage()方法有一個參數,用來在用戶端選擇要顯示或下載的檔案名稱字。這裡我們所顯示和下載的檔案可以不在虛擬目錄下,採用這個方法的好處是:可以根據許可權對檔案進行顯示和下載控制,從下面的方法我們可以看出,實際的檔案位置並沒有在虛擬目錄下,因此可以更好地對檔案進行許可權控制,這在對安全性有比較高的情況下特別有用。這個功能在以前的ASP程式中可以用Stream對象實現。為了方便讀者進行測試,這裡列出了全部的原始碼,並在原始碼裡進行介紹和注釋。
首先,建立GetBinaryFile.asmx檔案:
我們可以在VS.NET裡建立一個C#的aspxWebCS工程,然後“添加新項”,選擇“Web服務”,並設定檔案名稱為:GetBinaryFile.asmx,在“查看代碼”中輸入以下代碼,即:GetBinaryFile.asmx.cs:
複製代碼 代碼如下:usingSystem;
usingSystem.Collections;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Diagnostics;
usingSystem.Web;
usingSystem.Web.UI;
usingSystem.Web.Services;
usingSystem.IO;
namespacexml.sz.luohuedu.net.aspxWebCS
{
///<summary>
///GetBinaryFile的摘要說明。
///WebServices名稱:GetBinaryFile
///功能:返回伺服器上的一個檔案對象的二進位位元組數組。
///</summary>
[WebService(Namespace="http://xml.sz.luohuedu.net/",
Description="在WebServices裡利用.NET架構進行傳遞二進位檔案。")]
publicclassGetBinaryFile:System.Web.Services.WebService
{
#regionComponentDesignergeneratedcode
//Web服務設計器所必需的
privateIContainercomponents=null;
///<summary>
///清理所有正在使用的資源。
///</summary>
protectedoverridevoidDispose(booldisposing)
{
if(disposing&&components!=null)
{
components.Dispose();
}
base.Dispose(disposing);
}
#endregion
publicclassImages:System.Web.Services.WebService
{
///<summary>
///Web服務提供的方法,返回給定檔案的位元組數組。
///</summary>
[WebMethod(Description="Web服務提供的方法,返回給定檔案的位元組數組")]
publicbyte[]GetImage(stringrequestFileName)
{
///得到伺服器端的一個圖片
///如果你自己測試,注意修改下面的實際實體路徑
if(requestFileName==null||requestFileName=="")
returngetBinaryFile("D:\\Picture.JPG");
else
returngetBinaryFile("D:\\"+requestFileName);
}
///<summary>
///getBinaryFile:返回所給檔案路徑的位元組數組。
///</summary>
///<paramname="filename"></param>
///<returns></returns>
publicbyte[]getBinaryFile(stringfilename)
{
if(File.Exists(filename))
{
try
{
///開啟現有檔案以進行讀取。
FileStreams=File.OpenRead(filename);
returnConvertStreamToByteBuffer(s);
}
catch(Exceptione)
{
returnnewbyte[0];
}
}
else
{
returnnewbyte[0];
}
}
///<summary>
///ConvertStreamToByteBuffer:把給定的檔案流轉換為二進位位元組數組。
///</summary>
///<paramname="theStream"></param>
///<returns></returns>
publicbyte[]ConvertStreamToByteBuffer(System.IO.StreamtheStream)
{
intb1;
System.IO.MemoryStreamtempStream=newSystem.IO.MemoryStream();
while((b1=theStream.ReadByte())!=-1)
{
tempStream.WriteByte(((byte)b1));
}
returntempStream.ToArray();
}
[WebMethod(Description="Web服務提供的方法,返回給定檔案類型。")]
publicstringGetImageType()
{
///這裡只是測試,您可以根據實際的檔案類型進行動態輸出
return"image/jpg";
}
}
}
}