答案IMO不会,原因如下:
Microsoft Office Documents的设计方式非常复杂,不仅有一个带有对象(如图像)引用的格式化文件,本身还有一个类型od文件系统来管理这些对象的二进制数据.
让我从我们自己的乔尔那里引用一句话:
If you started reading these documents with the hope of spending a weekend writing some spiffy code that imports Word documents into your blog system, or creates Excel-formatted spreadsheets with your personal finance data, the complexity and length of the spec probably cured you of that desire pretty darn quickly. A normal programmer would conclude that Office’s binary file formats:
>故意混淆
>是痴呆的博格心灵的产物
>是由疯狂的程序员创造的
>并且无法正确阅读或创建.
You’d be wrong on all four counts….
进一步了解可能的解决方案:
If you really want to generate fancy formatted Word documents, your best bet is to create an RTF document. Everything that Word can do can be expressed in RTF, but it’s a text format, not binary, so you can change things in the RTF document and it’ll still work. You can create a nicely formatted document with placeholders in Word, save as RTF, and then using simple text substitution, replace the placeholders on the fly. Now you have an RTF document that every version of Word will open happily.
您旅途中可能感兴趣的一些链接:
>资源:
>解决方案
虽然,尝试使用winrar打开一个word文件;),也许创建一个包含某些标题的存档然后更改扩展就足够了,从未尝试过