0

我需要从我的 asp.net mvc 项目文件夹中提取一个 excel 文件并将其编码为 base64 字符串。

我现在的代码:

 string base64 = String.Empty;
 var pathName = Server.MapPath("~/App_Data/ImportTemplate.xlsx");`
 byte[] docBytes = null;

using (StreamReader strm = new StreamReader(pathName, System.Text.Encoding.UTF8))
        {
            Stream s = strm.BaseStream;
            BinaryReader r = new BinaryReader(s);
            docBytes = r.ReadBytes(Convert.ToInt32(r.BaseStream.Length));
            base64 = Convert.ToBase64String(docBytes);
            r.Close();
            s.Close();
            strm.Close();
        }

到目前为止,这不能正常工作。有什么建议么?

4

2 回答 2

0

你可以试试:

 byte[] docBytes = ReadFile(pathName);


 byte[] ReadFile(string sourcePath)
    {
        byte[] data = null;
        FileInfo fileInfo = new FileInfo(sourcePath);
        long numBytes = fileInfo .Length;
        FileStream fileStream = new FileStream(sourcePath, FileMode.Open, FileAccess.Read);
        BinaryReader br = new BinaryReader(fileStream);
        data = br.ReadBytes((int)numBytes);
        fileStream .Close();
        return data;
    }
于 2013-06-12T12:02:31.603 回答
0

最有可能的问题是您的 base64 数据包含“+”和“/”字符,这些字符由 HTTP 专门解释。您需要将该二进制文件转换为他们所谓的 base64 URL 编码,该编码对这些字符使用“-”和“_”。http://api.adform.com/Services/Documentation/Samples/MediaPlanServiceSamples.htm#ImportMediaPlan中的示例表明情况就是如此。

有关如何进行转换的信息,请参阅https://stackoverflow.com/a/17032614/56778 。

于 2013-06-12T11:57:07.320 回答