當前位置: 首頁>>代碼示例>>Java>>正文


Java FileDescriptor.getId方法代碼示例

本文整理匯總了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);
}
 
開發者ID:cuba-platform,項目名稱:cuba,代碼行數:12,代碼來源:FileUploadController.java

示例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);
    }
}
 
開發者ID:cuba-platform,項目名稱:cuba,代碼行數:10,代碼來源:FileUploadController.java

示例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);
    }
}
 
開發者ID:cuba-platform,項目名稱:cuba,代碼行數:12,代碼來源:FileDownloadController.java


注:本文中的com.haulmont.cuba.core.entity.FileDescriptor.getId方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。