2
.docxファイルを.htmlに変換したいと思います。私はC#で働いています。私のコードは次のとおりです。.docxをhtmlに変換する
Microsoft.Office.Interop.Word.Application word = new Microsoft.Office.Interop.Word.Application();
Microsoft.Office.Interop.Word.Document wordDoc = new Microsoft.Office.Interop.Word.Document();
Object oMissing = System.Reflection.Missing.Value;
wordDoc = word.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);
word.Visible = false;
Object filepath = @"C:\Users\John\Desktop\begin.docx";
Object confirmconversion = System.Reflection.Missing.Value;
Object readOnly = false;
Object saveto = @"C:\Users\John\Desktop\result.html";
Object oallowsubstitution = System.Reflection.Missing.Value;
wordDoc = word.Documents.Open(ref filepath, ref confirmconversion, ref readOnly, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing);
object fileFormat = WdSaveFormat.wdFormatHTML;
wordDoc.SaveAs(ref saveto, ref fileFormat, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oallowsubstitution, ref oMissing,
ref oMissing);
問題は、ヘッダーとフッターが含まれていないということです。 .html結果ファイルには含まれていません。結果にどのように含めることができますか?
手作業でやってみましたか?私はWordからHTMLに保存することを意味します。ヘッダーとフッターが含まれていますか? – Snowbear
はい、私は試したことがありません。 –
(商業用)ライブラリはオプションですか? – Yahia