溫馨提示×

溫馨提示×

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

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

java使用CKEditor實現(xiàn)圖片上傳功能

發(fā)布時間:2020-08-20 02:26:03 來源:腳本之家 閱讀:202 作者:努力做最好的自己 欄目:編程語言

java如何使用CKEditor實現(xiàn)圖片上傳功能,具體內(nèi)容如下

1.根據(jù)實際需要下載指定的CKEditor

java使用CKEditor實現(xiàn)圖片上傳功能

2.刪除文件ckeditor/plugins/image/dialogs/image.js預(yù)覽框中文本內(nèi)容,并修改hidden屬性值為顯示上傳選項卡

java使用CKEditor實現(xiàn)圖片上傳功能java使用CKEditor實現(xiàn)圖片上傳功能

刪除image.js中包含在雙引號中的上述文本

java使用CKEditor實現(xiàn)圖片上傳功能

將image.js中的hidden屬性值改為0

java使用CKEditor實現(xiàn)圖片上傳功能

3.修改ckeditor/config.js文件,配置“上傳到服務(wù)器”按鈕調(diào)用的controller接口

java使用CKEditor實現(xiàn)圖片上傳功能

java使用CKEditor實現(xiàn)圖片上傳功能

4.“上傳到服務(wù)器”按鈕調(diào)用的controller級別的接口

@Controller 
@RequestMapping("publicutil") 
public class PublicUtilController { 
 
@RequestMapping(value = "uploadImage") 
private void uploadImage(HttpServletRequest request, HttpServletResponse response, HttpSession session,@RequestParam MultipartFile[] upload) { 
   
 response.setCharacterEncoding("UTF-8"); 
 PrintWriter out=null; 
 try { 
  out = response.getWriter(); 
 } catch (IOException e1) { 
  logger.error("response.getWriter()異常="+e1); 
  e1.printStackTrace(); 
 } 
 String callback = request.getParameter("CKEditorFuncNum"); 
   
 // 獲得response,request 
 Map<String, Object> m = new HashMap<String, Object>(); 
   
 if (!ServletFileUpload.isMultipartContent(request)) { 
  m.put("error", 1); 
  m.put("message", "請選擇文件!"); 
  //return m; 
  logger.info("請選擇文件!"); 
 } 
   
 String originalFileName=null;//上傳的圖片文件名 
 String fileExtensionName=null;//上傳圖片的文件擴(kuò)展名 
 for (MultipartFile file : upload) { 
  if (file.getSize()> 10*1024* 1024) { 
   out.println("<script type=\"text/javascript\">"); 
   out.println("window.parent.CKEDITOR.tools.callFunction(" + callback 
      + ",''," + "'文件大小不得大于10M');"); 
   out.println("</script>"); 
     
  } 
    
  originalFileName=file.getOriginalFilename(); 
  logger.info("上傳的圖片文件名="+originalFileName); 
  fileExtensionName= originalFileName.substring( 
  originalFileName.lastIndexOf(".") ,originalFileName.length()).toLowerCase(); 
  logger.info("圖片文件擴(kuò)展名="+fileExtensionName); 
    
  String[] imageExtensionNameArray= WebsiteConstant.IMAGE_EXTENSION_NAME_ARRAY; 
    
  String allImageExtensionName=""; 
  boolean isContain=false;//默認(rèn)不包含上傳圖片文件擴(kuò)展名 
  for(int i=0;i<imageExtensionNameArray.length;i++){ 
   if(fileExtensionName.equals(imageExtensionNameArray[i])){ 
    isContain=true; 
   }  
   if(i==0){ 
    allImageExtensionName+=imageExtensionNameArray[i]; 
   }else{ 
    allImageExtensionName+=" , "+imageExtensionNameArray[i]; 
   } 
     
  } 
    
  String newFileName=java.util.UUID.randomUUID().toString()+fileExtensionName; 
  String uploadPath =WebsiteConstant.PIC_APP_FILE_SYSTEM_CKEDITOR_LOCATION; 
  if(isContain){//包含   
   File pathFile = new File(uploadPath); 
   if (!pathFile.exists()) { // 如果路徑不存在,創(chuàng)建 
    pathFile.mkdirs(); 
   } 
   try { 
    FileUtils.copyInputStreamToFile(file.getInputStream(), new File(uploadPath ,newFileName)); 
//    InputStream is=file.getInputStream(); 
//    File toFile = new File(uploadPath, newFileName); 
//    OutputStream os = new FileOutputStream(toFile); 
//    byte[] buffer = new byte[1024]; 
//    int length = 0; 
//    while ((length = is.read(buffer)) > 0) { 
//     os.write(buffer, 0, length); 
//    } 
//    is.close(); 
//    os.close(); 
   } catch (IOException e) { 
    logger.error("FileUtils.copyInputStreamToFile uploadPath="+uploadPath+" newFileName ="+newFileName+" exception="+e); 
   } 
   String imageUrl=WebsiteConstant.PIC_APP_SERVER_URL+"images/ckeditor/"+newFileName; 
   // 返回"圖像信息"選項卡并顯示圖片 ,在對應(yīng)的文本框中顯示圖片資源url 
   out.println("<script type=\"text/javascript\">"); 
   out.println("window.parent.CKEDITOR.tools.callFunction(" + callback 
      + ",'" +imageUrl + "','')"); 
   out.println("</script>"); 
     
  }else{ 
   out.println("<script type=\"text/javascript\">"); 
   out.println("window.parent.CKEDITOR.tools.callFunction(" + callback 
      + ",''," + "'文件格式不正確(必須為"+allImageExtensionName+"文件)');"); 
   out.println("</script>"); 
  } 
 
 }  
 } 
 
} 
<span >public class WebsiteConstant { 
 
 public static String[] IMAGE_EXTENSION_NAME_ARRAY={".jpg",".jpeg",".png",".gif",".bmp"}; 
 public static String PIC_APP_SERVER_URL="http://localhost:8090/Picture/"; 
 public static String PIC_APP_FILE_SYSTEM_CKEDITOR_LOCATION="/Users/abc/Documents/tomcat/webapps/Picture/images/ckeditor/"; 
 public static final int SUCCESS = 1; // 操作成功 
</span> 

5.若是在Maven項目中使用的CKEditor,需要在pom.xml中添加如下代碼:

<dependency> 
 <groupId>com.ckeditor</groupId> 
 <artifactId>ckeditor-java-core</artifactId> 
 <version>3.5.3</version> 
</dependency> 

6.最終效果圖

java使用CKEditor實現(xiàn)圖片上傳功能

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI