자바 로 컬 그림 읽 기

1514 단어 자바jspIE
IE 현재 7 이상 버 전 은 src 에 로 컬 하 드 디스크 주 소 를 직접 써 서 그림 을 표시 하 는 것 을 지원 하지 않 습 니 다.배경 을 통 해 response 에서 바 이 너 리 흐름 을 읽 는 방식 으로 만 프론트 에 그림 을 표시 할 수 있 기 때문이다.구체 적 인 코드 는 다음 과 같다.

public void showPicture(){
		String id = ServletActionContext.getRequest().getParameter("id");//前台传来的存图片路径实体类的主键id
		HttpServletResponse response = ServletActionContext.getResponse();//struts2获取response
		if(id != null && !"".equals(id)){
			this.classicCases = this.classicCasesManager.findClassicCasesById(id);
			String pic_path = this.classicCases.getImagesLocalPath();//图片路径
			FileInputStream is;
			try {
				is = new FileInputStream(pic_path);
				int i = is.available(); // 得到文件大小
				byte data[] = new byte[i];
				is.read(data); // 读数据
				is.close();
				response.setContentType("image/*"); // 设置返回的文件类型
				OutputStream toClient = response.getOutputStream(); // 得到向客户端输出二进制数据的对象
				toClient.write(data); // 输出数据
				toClient.close();
			} catch (FileNotFoundException e) {
				e.printStackTrace();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

jsp 페이지 는 간단 합 니 다. 경로 형식 은...http://localhost:8080/projectName/*.action:prama=XXX

<img alt="" id="images" src="<%=basePath %>ClassicCasesAction!showPicture.action?id=${classicCases.id}">

좋은 웹페이지 즐겨찾기