有没有办法将 Box 的 webdocs 和 Google 的 gdocs 下载为 Word 文档,将 Google 的 gsheets 下载为 Excel 电子表格?
我下载文件如下:
HttpClient client = new HttpClient();
HttpMethod getMethod = new GetMethod("https://api.box.com/2.0/files/fileId/data");
getMethod.setRequestHeader("Authorization", "BoxAuth api_key=" + API_KEY + "&auth_token=" + authToken);
client.executeMethod(getMethod);
我是否可以包含允许以指定格式导出的标题或参数?