Word.Document
内部Document.SaveAs2メソッドを使用し、エンコードされたテキストを出力形式として使用して、ファイルを保存するための少し異なる方法を提案しています。
これにより、可能なすべての言語エンコーディングをカバーする Microsoft Office Unicode エンコーディングを使用できるようになります。
また、双方向マークの処理方法を指定することもできます。このオプションが に設定されているtrue
場合、双方向の元の設定が保持されます。
Microsoft.Office.Interop.Word.Application WordApplication = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document DefaultDocument;
DefaultDocument = WordApplication.Documents.Open(FilePath);
CultureInfo culture = new CultureInfo((int)DefaultDocument.Content.LanguageID);
string SaveFileName = Path.Combine(Path.GetDirectoryName(FilePath),
Path.GetFileNameWithoutExtension(FilePath));
DefaultDocument.SaveAs2(SaveFileName, WdSaveFormat.wdFormatEncodedText, Type.Missing,
Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing, Type.Missing,
MsoEncoding.msoEncodingUnicodeLittleEndian, Type.Missing, Type.Missing,
Type.Missing, true); //<- BiDi Marks
//Release the Document
foreach (Document WDocument in WordApplication.Documents)
{
WDocument.Close(WdSaveOptions.wdDoNotSaveChanges);
Marshal.ReleaseComObject(WDocument);
}
//Release the WINWORD Process
WordApplication.Quit(WdSaveOptions.wdDoNotSaveChanges);
Marshal.ReleaseComObject(WordApplication);
Marshal.CleanupUnusedObjectsInCurrentContext();
//Test the results using a RichTextBox
richTextBox1.RightToLeft = (culture.TextInfo.IsRightToLeft) ? RightToLeft.Yes : RightToLeft.No;
richTextBox1.ImeMode = ImeMode.On;
richTextBox1.Text = File.ReadAllText(SaveFileName + ".txt");
これは、RichTextBox コントロールに示されている結果です。
の代わりに、カルチャ識別子 (LCID)を参照するDocument.LanguageID数値Document.SaveAs2
からエンコーディングを取得できます。
(は前のコードで既に定義されています)CultureInfo
culture
Encoding encoding = (culture.TextInfo.IsRightToLeft)
? Encoding.GetEncoding(culture.TextInfo.ANSICodePage)
: Encoding.Unicode;
using (MemoryStream MemStream = new MemoryStream(encoding.GetBytes(DefaultDocument.Content.Text)))
using (StreamReader reader = new StreamReader(MemStream, encoding))
File.WriteAllText(SaveFileName + ".txt", reader.ReadToEnd());