隨筆 - 25, 文章 - 1, 評(píng)論 - 0, 引用 - 0
          數(shù)據(jù)加載中……

          Ajax從服務(wù)端讀取圖片數(shù)據(jù)

          服務(wù)端代碼:
          @Action(value = "/imageload")
              
          public String imageLoad ()throws Exception {
                  
                  File f 
          = new File ("d:/down.jpg");
                  FileInputStream in 
          = new FileInputStream (f);
                  
          byte[] b = new byte[in.available()];
                  in.read(b);
                  HttpServletResponse response 
          = ServletActionContext.getResponse();
          //        response.setCharacterEncoding("UTF-8");
                  response.setContentType("image");
                  OutputStream pwt 
          = response.getOutputStream();
                  pwt.write(b);
                  pwt.flush();
                  pwt.close();
                  
          return null;
              }
          客戶端代碼:
          <%@ page language="java" contentType="text/html; charset=utf-8"
              pageEncoding
          ="utf-8"%>
          <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
          <html>
          <head>
          <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
          <title>Insert title here</title>
          <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
          </head>
          <body>
          <img id="img1" src=""></img>
          <script type="text/javascript">
              
          function load() {
                  $('#img1').attr('src', 'subject
          /imageload.action');
              }
          </script>

          <button onclick=load();>點(diǎn)擊獲取</button>
          </body>
          </html>


          posted on 2010-05-19 17:20 至尊貝貝 閱讀(1241) 評(píng)論(0)  編輯  收藏 所屬分類: 代碼:JavaScript

          主站蜘蛛池模板: 平定县| 百色市| 塔河县| 荆州市| 抚顺县| 登封市| 临邑县| 乌鲁木齐市| 来宾市| 宣化县| 乡城县| 囊谦县| 贵德县| 普兰县| 新巴尔虎右旗| 香河县| 比如县| 泾阳县| 南川市| 陆河县| 兴山县| 望奎县| 舒兰市| 秦安县| 德钦县| 百色市| 梅河口市| 正镶白旗| 石渠县| 乌审旗| 樟树市| 临潭县| 新宁县| 东台市| 房产| 阿鲁科尔沁旗| 平安县| 灵武市| 肇源县| 来宾市| 乃东县|