本文整理匯總了Java中com.google.api.services.drive.model.File.setDescription方法的典型用法代碼示例。如果您正苦於以下問題:Java File.setDescription方法的具體用法?Java File.setDescription怎麽用?Java File.setDescription使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.google.api.services.drive.model.File
的用法示例。
在下文中一共展示了File.setDescription方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: insertFile
import com.google.api.services.drive.model.File; //導入方法依賴的package包/類
/**
* Insert new file.
*
* @param title Title of the file to insert, including the extension.
* @param description Description of the file to insert.
* @param parentId Optional parent folder's ID.
* @param mimeType MIME type of the file to insert.
* @param file The file to insert.
* @return Inserted file metadata if successful, {@code null} otherwise.
*/
private File insertFile(String title, String description, String parentId, String mimeType, java.io.File file)
throws IOException {
File body = new File();
body.setTitle(title);
body.setDescription(description);
body.setMimeType(mimeType);
if (parentId != null && parentId.length() > 0) {
body.setParents(Collections.singletonList(new ParentReference().setId(parentId)));
}
FileContent mediaContent = new FileContent(mimeType, file);
return drive.files().insert(body, mediaContent).execute();
}