当前位置: 首页>>代码示例>>Java>>正文


Java MediaType.IMAGE_PNG_VALUE属性代码示例

本文整理汇总了Java中org.springframework.http.MediaType.IMAGE_PNG_VALUE属性的典型用法代码示例。如果您正苦于以下问题:Java MediaType.IMAGE_PNG_VALUE属性的具体用法?Java MediaType.IMAGE_PNG_VALUE怎么用?Java MediaType.IMAGE_PNG_VALUE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.springframework.http.MediaType的用法示例。


在下文中一共展示了MediaType.IMAGE_PNG_VALUE属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getFloorMap

@ApiOperation(value = "Retrieves the floor image file of the given floor identifier", nickname = "building/getFloorMap",
        notes = TransmissionConstants.GET_FLOOR_MAP_NOTE)
@RequestMapping(path = TransmissionConstants.GET_FLOOR_MAP_REST_URL,
        method = GET, produces = MediaType.IMAGE_PNG_VALUE)
public ResponseEntity<InputStreamResource> getFloorMap(
        @RequestParam(value = TransmissionConstants.FLOOR_IDENTIFIER_PARAM,
                defaultValue = TransmissionConstants.EMPTY_STRING_VALUE)
                String floorIdentifier) {

    File result = restTransmissionService.getFloorMap(floorIdentifier);

    if (result == null) {
        return ResponseEntity.notFound().build();
    }

    try {

        return ResponseEntity
                .ok()
                .contentType(MediaType.IMAGE_PNG)
                .body(new InputStreamResource(new FileInputStream(result)));

    } catch (IOException e) {
        e.printStackTrace();
        return ResponseEntity.notFound().build();
    }

}
 
开发者ID:ProjectIndoor,项目名称:projectindoorweb,代码行数:28,代码来源:BuildingController.java

示例2: getImage

/**
 * Gets the drawing associated to the specified ID.
 *
 * @param drawingId the drawing ID
 * @return the drawing's publisher
 */
@ResponseBody
@GetMapping(value = "/drawing/{id}", produces = MediaType.IMAGE_PNG_VALUE)
public byte[] getImage(@PathVariable("id") final String drawingId) {
    return mongoTemplate.findById(new ObjectId(drawingId), Drawing.class)
            .map(Drawing::getBase64Image)
            .map(Base64.getDecoder()::decode)
            .block();
}
 
开发者ID:gdrouet,项目名称:nightclazz-spring5,代码行数:14,代码来源:DrawingController.java

示例3: get

@RequestMapping(value = "/files/defaultAvatar", method = RequestMethod.GET, produces = {MediaType.IMAGE_PNG_VALUE})
public void get(HttpServletResponse resp) throws IOException {
       String filePath = Paths.get(new ClassPathResource("/").getFile().getAbsolutePath(), this.applicationConfig.getDefaultUserAvatar()).toAbsolutePath().toString();
       FileCopyUtils.copy(new FileInputStream(filePath), resp.getOutputStream());
       resp.flushBuffer();
}
 
开发者ID:bndynet,项目名称:web-framework-for-java,代码行数:6,代码来源:HomeController.java


注:本文中的org.springframework.http.MediaType.IMAGE_PNG_VALUE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。