JSP 로 컬 그림 가 져 오기 실례 상세 설명

1782 단어 JSP그림.
JSP 로 컬 그림 가 져 오기 실례 상세 설명
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}"> 

궁금 한 점 이 있 으 시 면 메 시 지 를 남기 거나 본 사이트 의 커 뮤 니 티 에 가서 토론 을 교류 하 세 요.읽 어 주 셔 서 감사합니다. 도움 이 되 셨 으 면 좋 겠 습 니 다.본 사이트 에 대한 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기