Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将从 wcf 服务接收的字节数组转换为 excel vba 中的文本文件?
这就是我如何获取字节数组 Dim 结果 As Variant result = service1.DownloadDocument()
在此代码之后,我想编写用于将此字节流写入文本文件的代码...
如果您尝试将字节数组转换为字符串,请尝试使用 StrConv 函数,例如:
Dim myString As String myString = StrConv(byteData, vbFromUnicode)
如果这为您提供了您正在寻找的结果,请使用上面的 meHow 答案将字符串写入文件。