1

この関数を使用して、レポートを PDF ファイルに書き込み、電子メールの添付ファイルとして送信しています。

string strNovaQueryString = string.Empty;
string pathFile = "";

string[] fields;
string[] values;

fields = ParamRelatorio.Split('|');

foreach (string key in fields)
{
    string[] param= key.Split(new char[] { '=' });
    strNovaQueryString += param[0] + "=" + param[1] + "&";
}

if (!string.IsNullOrEmpty(strNovaQueryString))
    strNovaQueryString = strNovaQueryString.TrimEnd('&');

string url = reportURL + "/ViewReport.aspx?" + strNovaQueryString;

string userName = user;
string password = pass;
string strPostData = String.Format("user={0}&pass={1}", userName, password);
byte[] postData = Encoding.ASCII.GetBytes(strPostData);

System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(url);
req.ContentType = "application/x-www-form-urlencoded";
req.Method = "POST";
req.ContentLength = postData.Length;

System.IO.Stream outputStream = req.GetRequestStream();
outputStream.Write(postData, 0, postData.Length);
outputStream.Close();

System.Net.HttpWebResponse rep = (System.Net.HttpWebResponse)req.GetResponse();
System.IO.Stream str = rep.GetResponseStream();
string contentType = rep.ContentType;

string fileType = "";

if (contentType != null)
{
    string[] splitString = contentType.Split(';');
    fileType = splitString[0];
}

if (fileType != null && fileType.ToLower() == "application/pdf")
{

    byte[] buffer = new byte[8192];

    int bytesRead = str.Read(buffer, 0, 8192);

    while (bytesRead > 0)
    {
        byte[] buffer2 = new byte[bytesRead];
        System.Buffer.BlockCopy(buffer, 0, buffer2, 0, bytesRead);

        pathFile = attPath+ "reportName" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".pdf";

        BinaryWriter binaryWriter = new BinaryWriter(File.Open(pathFile, FileMode.Create));
        binaryWriter.Write(buffer2);
        binaryWriter.Close();

        bytesRead = str.Read(buffer, 0, 8192);
    }

}
return pathFile;

必要なパス (「C://Documents//Att」のようなもの) 内に pdf ファイルを保存していますが、pdf ファイルは空です。メールは送信されていますが、pdf は空です。binaryWriter.Write(bytesRead);期待どおりに機能していないか、変数が空だと思います。

助言がありますか?

4

2 に答える 2

1

Stream.Flush を呼び出すのではなく、ストリームを閉じます (Close は Flush の呼び出しを保証しません)。

そして、常に using(var stream= ... ) を使用します - ファイルがブロックされないようにする必要があるためです。

于 2015-06-10T21:41:11.950 に答える