文件类型不受支持

时间:2013-08-28 14:40:56

标签: c# winforms savefiledialog

我正在尝试将图像发送到我正在使用当前程序的远程服务器。我是如何做到这一点首先必须将图像保存到用户的工作站,然后我存储该位置并将其传递给我的方法,以便将其传递给我的服务器。

但是,当我运行代码以传递图像时,我收到一条错误消息,指出我的文件类型不受支持。

以下是我的代码:

public static void HttpUploadFile(string url, string file, string paramName, string contentType, NameValueCollection nvc)
    {
        Console.Write(string.Format("Uploading {0} to {1}", file, url));
        string boundary = "---------------------------" + DateTime.Now.Ticks.ToString("x");
        byte[] boundarybytes = System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary + "\r\n");

        HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(url);
        wr.ContentType = "multipart/form-data; boundary=" + boundary;
        wr.Method = "POST";
        wr.KeepAlive = true;
        wr.Credentials = System.Net.CredentialCache.DefaultCredentials;

        Stream rs = wr.GetRequestStream();

        string formdataTemplate = "Content-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}";
        foreach (string key in nvc.Keys)
        {
            rs.Write(boundarybytes, 0, boundarybytes.Length);
            string formitem = string.Format(formdataTemplate, key, nvc[key]);
            byte[] formitembytes = System.Text.Encoding.UTF8.GetBytes(formitem);
            rs.Write(formitembytes, 0, formitembytes.Length);
        }
        rs.Write(boundarybytes, 0, boundarybytes.Length);

        string headerTemplate = "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\nContent-Type: {2}\r\n\r\n";
        string header = string.Format(headerTemplate, paramName, file, contentType);
        byte[] headerbytes = System.Text.Encoding.UTF8.GetBytes(header);
        rs.Write(headerbytes, 0, headerbytes.Length);

        FileStream fileStream = new FileStream(file, FileMode.Open, FileAccess.Read);
        byte[] buffer = new byte[4096];
        int bytesRead = 0;
        while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
        {
            rs.Write(buffer, 0, bytesRead);
        }
        fileStream.Close();

        byte[] trailer = System.Text.Encoding.ASCII.GetBytes("\r\n--" + boundary + "--\r\n");
        rs.Write(trailer, 0, trailer.Length);
        rs.Close();

        WebResponse wresp = null;
        try
        {
            wresp = wr.GetResponse();
            Stream stream2 = wresp.GetResponseStream();
            StreamReader reader2 = new StreamReader(stream2);
            Console.Write(string.Format("File uploaded, server response is: {0}", reader2.ReadToEnd()));
        }
        catch (Exception ex)
        {
            Console.Write("Error uploading file", ex);
            if (wresp != null)
            {
                wresp.Close();
                wresp = null;
            }
        }
        finally
        {
            wr = null;
        }
    }

我正在调用这样的方法:

  NameValueCollection nvc = new NameValueCollection();
  nvc.Add("id", "TTR");
  nvc.Add("btn-submit-photo", "Upload");
 HttpUploadFile("http://WebSiteLocation.com/images/uploadimage.html", sfd.ToString(),"image", "image/jpeg", nvc);

在上面的方法中,sfd与我用来保存图像的保存文件对话框有关。错误是这样的:

  

不支持给定路径的格式。

这一行突出显示:

 FileStream fileStream = new FileStream(file, FileMode.Open, FileAccess.Read);

我认为上面的代码可以发送任何文件,这就是为什么我很困惑这种情况正在发生。

谁能看到原因?我花了一段时间看这个,我认为需要一双新的眼睛和大脑。

为了完成我拨打sfc.ToString()时收到的字符串是:

  

System.Windows.Forms.SaveFileDialog:Title:FileName:C:\ Users \ MyComputer \ Desktop \ Img.png

2 个答案:

答案 0 :(得分:1)

该异常消息并未抱怨文件的格式。它抱怨文件名的格式。您可能在路径中包含无效字符。

在尝试打开文件之前的代码中,写下:

if (file.IndexOfAny(Path.GetInvalidPathChars()) >= 0)
{
    throw new ArgumentException("File name contains invalid characters", "file");
}

如果确定问题,那么最好的办法是在调用方法之前解决问题。也许您可以删除有问题的字符或将其转换为下划线。如果不了解您的计划如何运作,很难提出建议。

答案 1 :(得分:0)

您是否正在解析该字符串(sfd)中的文件名?如果不在本地运行它,我的第一个猜测是你用于文件名的字符串是坏的。它应该只是文件的路径,对吗?