上一篇只講到前臺(tái)操作,這篇專(zhuān)門(mén)涉及到Java后臺(tái)處理,前臺(tái)通過(guò)Ajax提交將Base64編碼過(guò)的圖片數(shù)據(jù)信息傳到Java后臺(tái),然后Java這邊進(jìn)行接收處理,通過(guò)對(duì)圖片數(shù)據(jù)信息進(jìn)行Base64解碼,之后使用流將圖片數(shù)據(jù)信息上傳至服務(wù)器進(jìn)行保存,并且將圖片的路徑地址存進(jìn)數(shù)據(jù)庫(kù)。
網(wǎng)站的建設(shè)創(chuàng)新互聯(lián)建站專(zhuān)注網(wǎng)站定制,經(jīng)驗(yàn)豐富,不做模板,主營(yíng)網(wǎng)站定制開(kāi)發(fā).小程序定制開(kāi)發(fā),H5頁(yè)面制作!給你煥然一新的設(shè)計(jì)體驗(yàn)!已為軟裝設(shè)計(jì)等企業(yè)提供專(zhuān)業(yè)服務(wù)。
大家可以點(diǎn)此鏈接查看前臺(tái)本地壓縮上傳的處理:
HTML5+Canvas+jQuery調(diào)用手機(jī)拍照功能實(shí)現(xiàn)圖片上傳(上)
ok,廢話(huà)不多說(shuō)了,直接貼代碼吧。
1、前臺(tái)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、后臺(tái)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編碼過(guò)的圖片數(shù)據(jù)信息,對(duì)字節(jié)數(shù)組字符串進(jìn)行Base64解碼 String imgPath = uploadFile(fileData,liceneName);//進(jìn)行文件上傳操作,上傳到服務(wù)器中存放(這里是上傳到服務(wù)器項(xiàng)目文件夾中存到) boolean result = false;//最終上傳成功與否的標(biāo)志 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);//保存路徑 //判斷數(shù)據(jù)庫(kù)中的路徑是否存在,并且文件夾中的文件是否存在(判斷是否上傳成功的標(biāo)志) 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);//執(zhí)行狀態(tài)保存操作 } 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){ //在自己的項(xiàng)目中構(gòu)造出一個(gè)用于存放用戶(hù)照片的文件夾 String imgPath = this.getServletContext().getRealPath("/uploads/"); //如果此文件夾不存在則創(chuàng)建一個(gè) File f = new File(imgPath); if(!f.exists()){ f.mkdir(); } //拼接文件名稱(chēng),不存在就創(chuàng)建 imgPath = imgPath + "/" + fileName + ".jpg"; f = new File(imgPath); if(!f.exists()){ f.mkdir(); } log.info("====文件保存的位置:"+imgPath); //使用BASE64對(duì)圖片文件數(shù)據(jù)進(jìn)行解碼操作 BASE64Decoder decoder = new BASE64Decoder(); try { //通過(guò)Base64解密,將圖片數(shù)據(jù)解密成字節(jié)數(shù)組 byte[] bytes = decoder.decodeBuffer(fileData); //構(gòu)造字節(jié)數(shù)組輸入流 ByteArrayInputStream bais = new ByteArrayInputStream(bytes); //讀取輸入流的數(shù)據(jù) BufferedImage bi = ImageIO.read(bais); //將數(shù)據(jù)信息寫(xiě)進(jìn)圖片文件中 ImageIO.write(bi, "jpg", f);// 不管輸出什么格式圖片,此處不需改動(dòng) 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; }
好了,到這里就全部結(jié)束了,這就是HTML5+jQuery+Canvas調(diào)用手機(jī)拍照功能實(shí)現(xiàn)圖片上傳的全部實(shí)現(xiàn)過(guò)程,總感覺(jué)自己的思路有些混亂,嗯,慢慢進(jìn)步吧!
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
網(wǎng)站題目:HTML5+Canvas調(diào)用手機(jī)拍照功能實(shí)現(xiàn)圖片上傳(下)
當(dāng)前路徑:http://jinyejixie.com/article4/jdocie.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作、域名注冊(cè)、自適應(yīng)網(wǎng)站、電子商務(wù)、品牌網(wǎng)站設(shè)計(jì)、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)