1

我正在尝试使用网络服务将文件上传到网络服务器。问题是我每次尝试使用引用的 Web 方法时都会收到“不支持给定文件格式”的异常。

这是我的应用程序中的代码:

Service1 upload = new Service1();
FileStream fs = new FileStream("ciao.txt", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
BinaryReader br = new BinaryReader(fs);
int length = new FileInfo("ciao.txt").Length;
byte[] buffer = br.ReadBytes((Int32)length);            
upload.WriteFile(buffer, "ciao.txt"); // <-- Exception
br.Close();
fs.Close();

这是http://MySite.somee.com/WebServices/WebService1/upload.asmx.cs中的代码(我的网站实际上并不称为 MySite)

[WebService(Namespace = "http://MySite.somee.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public void WriteFile(byte[] buffer, string FileName)
{            
StreamWriter sw = new StreamWriter(FileName, false);
sw.Write(buffer.ToString());
sw.Close();
}
}

我究竟做错了什么?

编辑:我将我的网络服务代码更改为如下所示

    [WebMethod]
    public void UploadFile(byte[] f, string fileName)
    {
            MemoryStream ms = new MemoryStream(f);
            FileStream fs = new FileStream(Path.Combine(System.Web.Hosting.HostingEnvironment.ApplicationPhysicalPath, "/ciao.txt");, FileMode.Create)
            ms.WriteTo(fs);
            ms.Close();
            fs.Close();
            fs.Dispose();
    }

并相应地更新了我的客户

                FileInfo fInfo = new FileInfo("ciao.txt");
                FileStream fStream = new FileStream("ciao.txt", FileMode.Open, FileAccess.Read);
                BinaryReader br = new BinaryReader(fStream);
                long numBytes = fInfo.Length;
                byte[] data = br.ReadBytes((int)numBytes);
                br.Close();
                MyService.UploadFile(data, "ciao.txt");
                fStream.Close();
                fStream.Dispose();

这样我不会得到任何异常,但文件仍然没有创建,我在我的网站上寻找“ciao.txt”但找不到它。

有什么帮助吗?

编辑2:解决了!我的网站设置在框架 4.0 - 4.5 上,而我的程序是在框架 3.5 下编译的,只要我切换它工作的框架。

4

2 回答 2

0

Here is an article I found to be helpful in loading files into a database from a website:

http://www.codeproject.com/Articles/48619/Reading-and-Writing-BLOB-Data-to-Microsoft-SQL-or

于 2013-02-15T00:21:38.447 回答
0

您的问题可能与此类似,并且已经回答:

“不支持给定路径的格式。”

于 2013-02-15T00:57:55.547 回答