0

我尝试用应用脚本打开一个 xls。
我可以通过以下方式获取文件的内容类型:

    var attach = messages[j].getAttachments()[0];
    var name = attach.getName();
    var type = attach.getContentType();

我得到:

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

但是,我如何阅读单元格中的信息?

 编辑

如果我使用

DocsList.createFile(attach);

attach添加到 google 文档列表中。

4

1 回答 1

0

我解决了用驱动器上传文件

https://gist.github.com/4666836

于 2013-01-29T23:45:28.620 回答