本文整理匯總了Java中com.haulmont.cuba.core.entity.FileDescriptor.getId方法的典型用法代碼示例。如果您正苦於以下問題:Java FileDescriptor.getId方法的具體用法?Java FileDescriptor.getId怎麽用?Java FileDescriptor.getId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.haulmont.cuba.core.entity.FileDescriptor
的用法示例。
在下文中一共展示了FileDescriptor.getId方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createFileInfoResponseEntity
import com.haulmont.cuba.core.entity.FileDescriptor; //導入方法依賴的package包/類
protected ResponseEntity<FileInfo> createFileInfoResponseEntity(HttpServletRequest request, FileDescriptor fd) {
FileInfo fileInfo = new FileInfo(fd.getId(), fd.getName(), fd.getSize());
UriComponents uriComponents = UriComponentsBuilder.fromHttpUrl(request.getRequestURL().toString())
.path("/{id}")
.buildAndExpand(fd.getId().toString());
HttpHeaders httpHeaders = new HttpHeaders();
httpHeaders.setLocation(uriComponents.toUri());
return new ResponseEntity<>(fileInfo, httpHeaders, HttpStatus.CREATED);
}
示例2: uploadToMiddleware
import com.haulmont.cuba.core.entity.FileDescriptor; //導入方法依賴的package包/類
protected void uploadToMiddleware(InputStream is, FileDescriptor fd) throws FileStorageException {
try {
fileLoader.saveStream(fd, new FileLoader.SingleInputStreamSupplier(is));
} catch (FileStorageException e) {
throw new RestAPIException("Unable to upload file to FileStorage",
"Unable to upload file to FileStorage: " + fd.getId(),
HttpStatus.INTERNAL_SERVER_ERROR);
}
}
示例3: downloadFromMiddlewareAndWriteResponse
import com.haulmont.cuba.core.entity.FileDescriptor; //導入方法依賴的package包/類
protected void downloadFromMiddlewareAndWriteResponse(FileDescriptor fd, HttpServletResponse response) throws IOException {
ServletOutputStream os = response.getOutputStream();
try (InputStream is = fileLoader.openStream(fd)) {
IOUtils.copy(is, os);
os.flush();
} catch (FileStorageException e) {
throw new RestAPIException("Unable to download file from FileStorage",
"Unable to download file from FileStorage: " + fd.getId(),
HttpStatus.INTERNAL_SERVER_ERROR);
}
}