6

MS Word ファイル全体をバイト配列に保存しています。ファイル システム上にある場合と同じようにロードしたいのですが、Microsoft.Office.Interop.Word の使用は最小限に抑えます。その.Open(args[]) 部分。

4

3 に答える 3

4

これを試して....

      byte[] bte = File.ReadAllBytes("E:\\test.doc"); // Put the Reading file
        File.WriteAllBytes(@"E:\\test1.doc", bte); // Same contents you will get in byte[] and that will be save here 
于 2013-08-12T10:33:58.213 に答える