亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

HTML5+Canvas調用手機拍照功能實現圖片上傳的方法

發布時間:2020-10-19 15:31:01 來源:億速云 閱讀:211 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關HTML5+Canvas調用手機拍照功能實現圖片上傳的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

到Java后臺處理,前臺通過Ajax提交將Base64編碼過的圖片數據信息傳到Java后臺,然后Java這邊進行接收處理,通過對圖片數據信息進行Base64解碼,之后使用流將圖片數據信息上傳至服務器進行保存,并且將圖片的路徑地址存進數據庫。

1、前臺js代碼:

$.ajax({ 
        async:false,//是否異步 
        cache:false,//是否使用緩存 
        type: "POST", 
        data:{fileData:fileData,licenceName:licenceName,cust_tax_code:cust_tax_code,phoneNum:phoneNum,state_id:state_id}, 
        dataType: "json", 
        timeout: 1000, 
        contentType : 'application/x-www-form-urlencoded; charset=utf-8', 
        url: $('#ctx').val()+"CustomerCheckServlet?action=uploadLicence", 
        success: function(result){ 
          console.log(result); 
          if(result == true){ 
            alert('Success Upload~~~'); 
          }else if(result == false){ 
            alert('Error Upload~~~'); 
          } 
        }, 
        error: function(){ 
          alert("Error Linking~"); 
        } 
      });

2、后臺Java代碼

/** 
   * 證件上傳 
   * @param request 
   * @param response 
   * @throws IOException 
   */ 
  public void uploadLicence(HttpServletRequest request,HttpServletResponse response) throws IOException{ 
    log.info("=====================uploadLicence"); 
    df = new SimpleDateFormat("yyyy-MM-dd"); 
     
    String cust_tax_code = request.getParameter("cust_tax_code"); 
    String phoneNum = request.getParameter("phoneNum"); 
    String licenceName = request.getParameter("licenceName"); 
     
    String fileData = request.getParameter("fileData");//Base64編碼過的圖片數據信息,對字節數組字符串進行Base64解碼 
    String imgPath = uploadFile(fileData,liceneName);//進行文件上傳操作,上傳到服務器中存放(這里是上傳到服務器項目文件夾中存到) 
     
    boolean result = false;//最終上傳成功與否的標志 
     
    custCheckInfo = new CustomerCheckInfo(); 
    custCheckInfo.setCust_tax_code(cust_tax_code); 
    custCheckInfo.setPhonenum(phoneNum); 
    custCheckInfo.setUpdate_time(df.format(new Date())); 
     
    boolean save_flag = customerService.saveRegistCertInfo(custCheckInfo);//保存路徑 
     
    //判斷數據庫中的路徑是否存在,并且文件夾中的文件是否存在(判斷是否上傳成功的標志) 
    boolean is_success = isSuccessUpload(licenceName, cust_tax_code, phoneNum); 
    if(save_flag && is_success){ 
      result = true; 
    } 
     
    //如果證件上傳成功,則記錄到記錄表中 
    if(result){ 
      StateRecordInfo record = new StateRecordInfo(); 
      record.setCust_tax_code(cust_tax_code); 
      record.setPhonenum(phoneNum); 
      record.setState_id(state_id); 
       
      saveStateRecord(record);//執行狀態保存操作 
    } 
     
    System.out.println("===result:"+result); 
    PrintWriter pw = response.getWriter(); 
    pw.print(result); 
    pw.close(); 
  }
/** 
   * 文件上傳 
   * @param fileData 
   * @param fileName 
   * @return 
   */ 
  public String uploadFile(String fileData,String fileName){ 
    //在自己的項目中構造出一個用于存放用戶照片的文件夾 
    String imgPath = this.getServletContext().getRealPath("/uploads/"); 
    //如果此文件夾不存在則創建一個 
    File f = new File(imgPath); 
    if(!f.exists()){ 
      f.mkdir(); 
    } 
    //拼接文件名稱,不存在就創建 
    imgPath = imgPath + "/" + fileName + ".jpg"; 
    f = new File(imgPath); 
    if(!f.exists()){ 
      f.mkdir(); 
    } 
     
    log.info("====文件保存的位置:"+imgPath); 
     
    //使用BASE64對圖片文件數據進行解碼操作 
    BASE64Decoder decoder = new BASE64Decoder(); 
    try { 
      //通過Base64解密,將圖片數據解密成字節數組 
      byte[] bytes = decoder.decodeBuffer(fileData); 
      //構造字節數組輸入流 
      ByteArrayInputStream bais = new ByteArrayInputStream(bytes); 
      //讀取輸入流的數據 
      BufferedImage bi = ImageIO.read(bais); 
      //將數據信息寫進圖片文件中 
      ImageIO.write(bi, "jpg", f);// 不管輸出什么格式圖片,此處不需改動 
      bais.close(); 
    } catch (IOException e) { 
      log.error("e:{}",e); 
    } 
    return imgPath; 
  }
/** 
   * 判斷是否成功上傳 
   * @return 
   */ 
  public boolean isSuccessUpload(String licenceName,String cust_tax_code,String phonenum){ 
    boolean flag = false; 
    String licencePath = "";//證件圖片上傳成功之后保存的路徑 
     
    custCheckInfo = customerService.getCustomerCheckInfo(cust_tax_code, phonenum); 
    licencePath = custCheckInfo.getTax_regist_cert(); 
   
    //判斷證件路徑不為空并且在上傳存放的文件夾中存在,就表明以上傳成功 
    File f = new File(licencePath); 
    if(licencePath.length() >0 && f.exists()){ 
      flag = true; 
    } 
    return flag; 
  }

關于HTML5+Canvas調用手機拍照功能實現圖片上傳的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄂尔多斯市| 怀化市| 河北省| 平乐县| 洞头县| 博野县| 梁河县| 济阳县| 襄垣县| 康定县| 丽水市| 中卫市| 自贡市| 西乌珠穆沁旗| 翁牛特旗| 思南县| 阿拉善左旗| 荆州市| 黄骅市| 方正县| 芦溪县| 鱼台县| 建德市| 张家港市| 林甸县| 繁昌县| 旌德县| 连城县| 庆元县| 高碑店市| 买车| 大港区| 玛多县| 凉山| 宜黄县| 四川省| 陵水| 祁连县| 塘沽区| 文山县| 锦州市|