将Google文档保存为Xml

时间:2013-02-07 15:13:35

标签: xml xmlwriter google-docs

所以,我正在努力使用SpreadsheetEntry.SaveToXml(System.Xml.XmlWriter)将google doc电子表格保存到xml,但是我收到以下错误:

System.Xml.dll中发生了未处理的“System.Xml.XmlException”类型异常 附加信息:前缀''无法在同一个开始元素标记内从''重新定义为'http://www.w3.org/2005/Atom'。

我的代码如下,我几乎可以肯定我正在使用API​​ ...有人可以告诉我如何修复此错误吗?它创建文件没问题,但它从不写任何东西。

    public void backUpSpreadsheets()
    {
        SpreadsheetFeed allSpreadSheets = this.allSheets;

        foreach(SpreadsheetEntry sheet in this.allSheets.Entries)
        {
            using (XmlWriter writer = XmlWriter.Create(@"C:\Users\BagpipesJohnson\Desktop\testing\" + sheet.Title.Text + ".xml"))
                sheet.SaveToXml(writer);
        }
    }

由于

0 个答案:

没有答案