我想将TextDocument
通过 OpenOffice.org 创建的 UNO 保存到磁盘上的文件中。做这个的最好方式是什么?
编辑:这是我最终使用的 C# 代码。document
是一个XTextDocument
。
protected void Save (string path)
{
string url = "file://" + path;
PropertyValue [] propertyValues = {
new PropertyValue {
Name = "FilterName",
Value = new Any ("writer8")
}
};
((XStorable) document).storeAsURL (url, propertyValues);
}