gpt4 book ai didi

c# - 在 C# 中将字符串转换为字节数组以在 C++ 中将字符串写入文件

转载 作者:行者123 更新时间:2023-11-28 07:31:51 26 4
gpt4 key购买 nike

我在 C# 中有一个包含 xml 数据的内存流对象。

fileEntity = new FileEntity();
fileEntity.Bytes = new byte[stream[0].Length];
fileEntity.FileName = ConfigurationManager.AppSettings["BackupPath"].ToString() + "\\" + backupEntity.BackupFileName;

stream.Position = 0;
stream.Read(fileEntity.Bytes, 0, (int)stream[0].Length);

当我将 fileEntity.Bytes 写入 C# 中的文件时,它会正确生成。

但是,我需要使用 COM 在 C++ 中访问字节并将字节写入文件。

pSABytes = fileentity->GetBytes();
bytes = (byte*)pSABytes;
LONG ub;
HRESULT res = SafeArrayGetUBound(pSABytes, 1, &ub);
FILE* file = fopen("c:\\Abc.xml", "w+");
fwrite( bytes, 1, ub, file );
fclose(file);

但是我在行 fwrite(bytes,1,ub,file) 上遇到异常

Unhandled exception at 0x5f268962 (msvcr100d.dll) in COM.exe: 0xC0000005: Access violation reading location 0x000000001cf1d000.

最佳答案

bytes = (byte*)pSABytes 对于您尝试执行的操作是不合法的。您需要调用 SafeArrayAccessData(pSABytes, &bytes)

关于c# - 在 C# 中将字符串转换为字节数组以在 C++ 中将字符串写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17515045/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com