的標題說明了一切:C#轉換文件到Base64String,然後再返回
- 我在tar.gz壓縮讀像這樣
- 斷裂文件轉換成字節數組
- 轉換這些字節爲Base64字符串
- 轉換是Base64編碼字符串回字節數組
- 寫這些字節返回到一個新的tar.gz文件
我可以確認這兩個文件的大小相同(以下方法返回true),但我無法再提取複製版本。
我錯過了什麼嗎?
Boolean MyMethod(){
using (StreamReader sr = new StreamReader("C:\...\file.tar.gz")) {
String AsString = sr.ReadToEnd();
byte[] AsBytes = new byte[AsString.Length];
Buffer.BlockCopy(AsString.ToCharArray(), 0, AsBytes, 0, AsBytes.Length);
String AsBase64String = Convert.ToBase64String(AsBytes);
byte[] tempBytes = Convert.FromBase64String(AsBase64String);
File.WriteAllBytes(@"C:\...\file_copy.tar.gz", tempBytes);
}
FileInfo orig = new FileInfo("C:\...\file.tar.gz");
FileInfo copy = new FileInfo("C:\...\file_copy.tar.gz");
// Confirm that both original and copy file have the same number of bytes
return (orig.Length) == (copy.Length);
}
編輯:工作的例子是簡單得多(感謝@ T.S):
Boolean MyMethod(){
byte[] AsBytes = File.ReadAllBytes(@"C:\...\file.tar.gz");
String AsBase64String = Convert.ToBase64String(AsBytes);
byte[] tempBytes = Convert.FromBase64String(AsBase64String);
File.WriteAllBytes(@"C:\...\file_copy.tar.gz", tempBytes);
FileInfo orig = new FileInfo(@"C:\...\file.tar.gz");
FileInfo copy = new FileInfo(@"C:\...\file_copy.tar.gz");
// Confirm that both original and copy file have the same number of bytes
return (orig.Length) == (copy.Length);
}
謝謝!
你可以用」只要改變一個壓縮文件的內容。您必須在步驟1中解壓縮文件,而不是直接按照原樣讀取它。然後第5步同樣需要重新壓縮數據,而不是直接寫出字節。 – itsme86 2014-09-18 18:10:19
幸運的是,由於沒有實際操作文件本身(基本上只是將它從A點移動到B點),此特定任務不需要任何(de /)壓縮 – darkpbj 2014-09-18 18:29:21