1. 程式人生 > >Ueditor1.4.3版本多圖上傳中的線上管理BUG

Ueditor1.4.3版本多圖上傳中的線上管理BUG

我在使用Ueditor1.4.3的過程中,發現多圖上傳中的線上管理的功能怎麼的都不能顯示圖片,經過firebug的檢視得知,是因為Ueditor1.4.3獲取了圖片的物理路徑放在img標籤中,既然已經知道了問題的所在,那麼以下就是我解決方法,當然是修改Ueditor1.4.3的原始碼了,請見下面:
修改com.baidu.ueditor.hunter.FileManager方法:

private String getPath ( File file ) {    
    String path = file.getAbsolutePath();    
    //System.out.println
("old:"+path); String str=path.replace(this.rootPath.replaceAll("\\/", "\\\\"), "\\" ); //System.out.println("new:"+str); return str; }