|
一:通過Web Services顯示和下載文件
我們這里建立的Web Services的名稱為GetBinaryFile,提供兩個公共方法:分別是GetImage()和GetImageType(),前者返回二進(jìn)制文件字節(jié)數(shù)組,后者返回文件類型,其中,GetImage()方法有一個參數(shù),用來在客戶端選擇要顯示或下載的文件名字。這里我們所顯示和下載的文件可以不在虛擬目錄下,采用這個方法的好處是:可以根據(jù)權(quán)限對文件進(jìn)行顯示和下載控制,從下面的方法我們可以看出,實際的文件位置并沒有在虛擬目錄下,因此可以更好地對文件進(jìn)行權(quán)限控制,這在對安全性有比較高的情況下特別有用。這個功能在以前的ASP程序中可以用Stream對象實現(xiàn)。為了方便讀者進(jìn)行測試,這里列出了全部的源代碼,并在源代碼里進(jìn)行介紹和注釋。
首先,建立GetBinaryFile.asmx文件:
我們可以在VS.NET里新建一個C#的ASPxWebCS工程,然后“添加新項”,選擇“Web服務(wù)”,并設(shè)定文件名為:GetBinaryFile.asmx,在“查看代碼”中輸入以下代碼,即:GetBinaryFile.asmx.cs:
復(fù)制代碼 代碼如下:
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
///功能:返回服務(wù)器上的一個文件對象的二進(jìn)制字節(jié)數(shù)組。
///</summary>
[WebService(Namespace="http://xml.sz.luohuedu.NET/",
Description="在WebServices里利用.NET框架進(jìn)行傳遞二進(jìn)制文件。")]
publicclassGetBinaryFile:System.Web.Services.WebService
{
#regionComponentDesignergeneratedcode
//Web服務(wù)設(shè)計器所必需的
privateIContainercomponents=null;
///<summary>
///清理所有正在使用的資源。
///</summary>
protectedoverridevoidDispose(booldisposing)
{
if(disposing&&components!=null)
{
components.Dispose();
}
base.Dispose(disposing);
}
#endregion
publicclassImages:System.Web.Services.WebService
{
///<summary>
///Web服務(wù)提供的方法,返回給定文件的字節(jié)數(shù)組。
///</summary>
[WebMethod(Description="Web服務(wù)提供的方法,返回給定文件的字節(jié)數(shù)組")]
publicbyte[]GetImage(stringrequestFileName)
{
///得到服務(wù)器端的一個圖片
///如果你自己測試,注意修改下面的實際物理路徑
if(requestFileName==null||requestFileName=="")
returngetBinaryFile("D://Picture.JPG");
else
returngetBinaryFile("D://"+requestFileName);
}
///<summary>
///getBinaryFile:返回所給文件路徑的字節(jié)數(shù)組。
///</summary>
///<paramname="filename"></param>
///<returns></returns>
publicbyte[]getBinaryFile(stringfilename)
{
if(File.Exists(filename))
{
try
{
///打開現(xiàn)有文件以進(jìn)行讀取。
FileStreams=File.OpenRead(filename);
returnConvertStreamToByteBuffer(s);
}
catch(Exceptione)
{
returnnewbyte[0];
}
}
else
{
returnnewbyte[0];
}
}
///<summary>
///ConvertStreamToByteBuffer:把給定的文件流轉(zhuǎn)換為二進(jìn)制字節(jié)數(shù)組。
///</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服務(wù)提供的方法,返回給定文件類型。")]
publicstringGetImageType()
{
///這里只是測試,您可以根據(jù)實際的文件類型進(jìn)行動態(tài)輸出
return"image/jpg";
}
}
}
}
AspNet技術(shù):asp.net Web Services上傳和下載文件(完整代碼)第1/2頁,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。