将字节数组拆分为块并将其转换并附加到字符串的示例代码

发布于 2024-09-09 16:21:11 字数 274 浏览 5 评论 0原文

我将文件加载到字节数组中,然后使用以下命令将其转换为字符串 方法。

string str1 = Convert.ToBase64String(fileBytes);

它适用于小文件,但当文件太大(例如 170MB)时,应用程序会抛出“system.outofmemory”异常。

因此,为了避免这个问题,我尝试将字节数组分成块,然后将其转换并附加到字符串中。我需要确保读取所有块,直到将每个块附加到字符串末尾。需要示例代码来分解块并循环......

I am loading a file into a byte array and then converting it to string using the following
method.

string str1 = Convert.ToBase64String(fileBytes);

It works fine with the small files, but when the files fet too bigger like 170MB, the application throws 'system.outofmemory' exception.

So to avoid the problem, I am trying to break the byte array into chunks and convert and append it to the string. I need to make sure that I read all the chunks until append each chunk at the end of the string. Need the sample code for breaking into chunks and looping through..

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

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

发布评论

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

评论(2

薄荷港 2024-09-16 16:21:11
  • 使用 CharrArray 固定大小存储结果 - 从 FileLen 计算
  • 使用 Bf 大小因子 6 - 6 字节 -> 8 通道

char[] ChArr;
string Fname = @"File Location ...";
byte[] bf = new byte[0x60000]; // 128k * 3  - 6 Bytes -> 8 Asc64 chr
int pout = 0;
int pin = 0;
using (FileStream Fs = new FileStream(Fname, FileMode.Open, FileAccess.Read))
{
    int TotalBytes = (int)Fs.Length;
    ChArr = new char[(int)(Math.Ceiling (TotalBytes / 3 )) * 4];
    while (pin < TotalBytes)
    {
        int bytesRead = Fs.Read(bf, 0, bf.Length);
        if (bytesRead <= 0) throw new Exception("Bof Found");

        int bw = Convert.ToBase64CharArray(bf, 0, bytesRead, ChArr, pout);
        pin += bytesRead;
        pout += bw;
    }
}
string s = new string(ChArr, 0, pout);
  • Use CharrArray Fixed Size to Store Result - Compute it from FileLen
  • Use Bf size Factor 6 - 6 Bytes -> 8 Chr

char[] ChArr;
string Fname = @"File Location ...";
byte[] bf = new byte[0x60000]; // 128k * 3  - 6 Bytes -> 8 Asc64 chr
int pout = 0;
int pin = 0;
using (FileStream Fs = new FileStream(Fname, FileMode.Open, FileAccess.Read))
{
    int TotalBytes = (int)Fs.Length;
    ChArr = new char[(int)(Math.Ceiling (TotalBytes / 3 )) * 4];
    while (pin < TotalBytes)
    {
        int bytesRead = Fs.Read(bf, 0, bf.Length);
        if (bytesRead <= 0) throw new Exception("Bof Found");

        int bw = Convert.ToBase64CharArray(bf, 0, bytesRead, ChArr, pout);
        pin += bytesRead;
        pout += bw;
    }
}
string s = new string(ChArr, 0, pout);
百善笑为先 2024-09-16 16:21:11

您可以尝试逐行工作:

using (var sr = new System.IO.StreamReader(filePath))
{
    var line = sr.ReadLine();
}

You could try working on a line by line basis:

using (var sr = new System.IO.StreamReader(filePath))
{
    var line = sr.ReadLine();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文