访问存储在 Windows Azure BLOB 上的文本文件

发布于 2024-08-28 04:34:15 字数 161 浏览 8 评论 0原文

我正在 Windows Azure 上工作。我遵循了一些有关如何将文本文件存储到 windows azure 的 blob 上的教程。 我成功上传数据。现在,我想访问该文件。我的意思是,我必须读取文件的内容并显示它...

任何人都可以告诉我,该怎么做...

谢谢, 提前...

I am working on Windows Azure. I followed some tutorial about how to store text file on to the blob of windows azure.
I am successful in uploading the data. Now, I wanted to access the file. I mean, I have to read the content of the file and display it....

Can anyone tell me, How to do that...

Thanks,
in advance...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟织青萝梦 2024-09-04 04:34:15

        public CloudBlobContainer ContBlob; 

    public string UpFile(string FilePathName, string bName, NameValueCollection nM)
    {
        string s1;
        FileStream F1 = new FileStream(FilePathName, FileMode.Open, FileAccess.Read);            
        ContBlob.GetBlobReference(bName).UploadFromStream(F1);
        s1 = ContBlob.GetBlobReference(bName).ToString();     
        ContBlob.GetBlobReference(bName).Metadata.Add(nM);
        F1.Close();
        return s1;
    }


    public NameValueCollection DownFile(string FilePathName, string bName)
    {
        NameValueCollection nM = new NameValueCollection();
        FileStream F1 = new FileStream(FilePathName,  FileMode.Create, FileAccess.Write);
        ContBlob.GetBlobReference(bName).DownloadToStream(F1);
        nM = ContBlob.GetBlobReference(bName).Metadata;
        F1.Close();
        return nM;
    }

    public NameValueCollection DownMeta(string bName)
    {
        NameValueCollection nM = new NameValueCollection();
        nM = ContBlob.GetBlobReference(bName).Metadata;
        return nM;
    }

    public void UpMeta(string bName, NameValueCollection nM)
    {
        ContBlob.GetBlobReference(bName).Metadata.Clear();
        ContBlob.GetBlobReference(bName).Metadata.Add(nM);
    }

        public CloudBlobContainer ContBlob; 

    public string UpFile(string FilePathName, string bName, NameValueCollection nM)
    {
        string s1;
        FileStream F1 = new FileStream(FilePathName, FileMode.Open, FileAccess.Read);            
        ContBlob.GetBlobReference(bName).UploadFromStream(F1);
        s1 = ContBlob.GetBlobReference(bName).ToString();     
        ContBlob.GetBlobReference(bName).Metadata.Add(nM);
        F1.Close();
        return s1;
    }


    public NameValueCollection DownFile(string FilePathName, string bName)
    {
        NameValueCollection nM = new NameValueCollection();
        FileStream F1 = new FileStream(FilePathName,  FileMode.Create, FileAccess.Write);
        ContBlob.GetBlobReference(bName).DownloadToStream(F1);
        nM = ContBlob.GetBlobReference(bName).Metadata;
        F1.Close();
        return nM;
    }

    public NameValueCollection DownMeta(string bName)
    {
        NameValueCollection nM = new NameValueCollection();
        nM = ContBlob.GetBlobReference(bName).Metadata;
        return nM;
    }

    public void UpMeta(string bName, NameValueCollection nM)
    {
        ContBlob.GetBlobReference(bName).Metadata.Clear();
        ContBlob.GetBlobReference(bName).Metadata.Add(nM);
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文