将文件上传到 azure blob 存储,然后使用文件的 base64 字符串发送 http 响应不起作用

2023-12-21

我正在尝试使用 azure blob 存储来实现以下目标。

  1. 将文件上传到 Azure Blob 存储。
  2. 然后发送包含文件的 base64 字符串的 http 响应。

奇怪的是,我只能让一个工作,因为它会导致另一个根据我的代码顺序停止工作。

        HttpPostedFile image = Request.Files["froalaImage"];
        if (image != null)
        {
            string fileName = RandomString() + System.IO.Path.GetExtension(image.FileName);
            string companyID = Request.Form["companyID"].ToLower();

            // Retrieve storage account from connection string.
            CloudStorageAccount storageAccount = CloudStorageAccount.Parse(
                CloudConfigurationManager.GetSetting("StorageConnectionString"));

            // Create the blob client.
            CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();

            // Retrieve reference to a previously created container.
            CloudBlobContainer container = blobClient.GetContainerReference(companyID);

            // Create the container if it doesn't already exist.
            container.CreateIfNotExists();

            // Retrieve reference to a blob named "filename".
            CloudBlockBlob blockBlob = container.GetBlockBlobReference(fileName);

            // Create or overwrite the blob with contents from a local file.
            using (image.InputStream)
            {
                blockBlob.UploadFromStream(image.InputStream);
                byte[] fileData = null;
                using (var binaryReader = new BinaryReader(image.InputStream))
                {
                    fileData = binaryReader.ReadBytes(image.ContentLength);
                }
                string base64ImageRepresentation = Convert.ToBase64String(fileData);                   

                // Clear and send the response back to the browser.
                string json = "";
                Hashtable resp = new Hashtable();
                resp.Add("link", "data:image/" + System.IO.Path.GetExtension(image.FileName).Replace(@".", "") + ";base64," + base64ImageRepresentation);
                resp.Add("imgID", "BLOB/" + fileName);
                json = JsonConvert.SerializeObject(resp);
                Response.Clear();
                Response.ContentType = "application/json; charset=utf-8";
                Response.Write(json);
                Response.End();
            }
        }

上面的代码会将文件上传到 azure 的 blob 存储,但 base64 字符串将为空。

但如果我把这条线blockBlob.UploadFromStream(image.InputStream);线以下string base64ImageRepresentation = Convert.ToBase64String(fileData);

我将毫无问题地获取 base64 字符串,但是该文件未正确上传到 azure 的 blob 存储。


也许您需要在第一次使用后重置流位置?

image.InputStream.Seek(0, SeekOrigin.Begin);
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

将文件上传到 azure blob 存储,然后使用文件的 base64 字符串发送 http 响应不起作用 的相关文章

随机推荐