Google为Google云端硬盘文档提供了多个编辑器,还提供了viewer for external document types。我已经在处理驱动文件中的元数据,但是如何从GWT / GAE代码中打开这些编辑器?
总结;如何在我自己的GWT网站的框架中启动Google编辑器?有没有这个API?
我已经看过GDBE project,但我喜欢使用标准的驱动程序编辑器。
答案 0 :(得分:0)
查看 cloudie基于Web的桌面;
http://code.google.com/p/cloudie/
编辑器在一个新窗口中打开,只有一个URL参数...
private void execute(final FileDialogOpenDocumentCommand cmd)
{
Window.open("http://docs.google.com/Doc?docid=" + cmd.getDocumentId() +
"&hl=en",cmd.getDocumentId(), "");
}