我正试图找到一种在文本文件中存储mp3声音的方法。我的计划是将原始mp3文件转换为base64-string然后保存。
我花了很多时间问谷歌,但只能找到一种方法将base64-string转换回mp3。
这甚至可能吗?我也开放其他解决方案,我只需要能够将文件转换为文本然后再转换为mp3格式。我使用的是Visual Basic .NET,但我认为C#也可以帮助我。
答案 0 :(得分:2)
使用Convert.ToBase64String
method将字节数组转换为base64字符串:
' load file into a byte array
Dim data As Byte() = File.ReadAllBytes(filename)
' convert the byte array to base64
Dim str As String = Convert.ToBase64String(data)
' write the string to a file
File.WriteAllText(newFilename, str)