基于Google Drive API参考,指导如何插入文件Files.insert

// File's metadata.
File body = new File();
body.setTitle(title);
body.setDescription(description);
body.setMimeType(mimeType);

// File's content.
java.io.File fileContent = new java.io.File(filename);
FileContent mediaContent = new FileContent(mimeType, fileContent);
try {
  File file = service.files().insert(body, mediaContent).execute();

  // Uncomment the following line to print the File ID.
  // System.out.println("File ID: " + file.getId());

  return file;
} catch (IOException e) {
  System.out.println("An error occured: " + e);
  return null;
}


但是,我的应用程序是Web应用程序,当上传到Google App Engine时它不支持java.io.File包=>我不能使用它来设置文件对象的内容

java.io.File fileContent = new java.io.File(filename);
FileContent mediaContent = new FileContent(mimeType, fileContent);


还有其他方法可以实现此目的,例如使用blob或二进制数据作为文件内容吗?

最佳答案

代替FileContent,使用AbstractInputStreamContent的其他子类之一,例如ByteArrayContent

关于java - 使用Google Drive API插入文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30795418/

10-10 19:58