我XML文件中有如下內容:如何把XML文件轉換爲Doc文件?
<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend! </body>
</note>
我必須將它轉換爲doc文件。我正在使用Spire.Doc組件進行轉換。但它給下面的錯誤:
"Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index "
我使用下面的代碼片段:
Document doc = new Document();
doc.LoadFromFile(textBox1.Text, FileFormat.Xml);
doc.SaveToFile(DocfileLocation, FileFormat.Doc);
是否有任何其他的方法來轉換呢?
歡迎來到堆棧溢出,我編輯了你的問題,這裏是爲什麼:http://meta.stackexchange.com/questions/19190/should-questions-include-tags-in-their -titles –