代码改变世界

百度编辑器多图上传返回图片绝对路径问题

2017-07-30 10:27  tlnshuju  阅读(837)  评论(0编辑  收藏  举报

在官方下载jsp版本号的百度编辑器,改动源代码然后打包成jar就可以,

改动方法例如以下:

改动FileManager.java文件里的getPath 方法为
private String getPath ( File file ) {
      //String path = file.getAbsolutePath();
 //输出的路径为:\Project\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\qw\ueditor\jsp\upload\image\20150809\1439097577967024082.jpg
        String path = PathFormat.format(file.getAbsolutePath());
 //输出的路径为:/Project/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/qw/ueditor/jsp/upload/image/20150809/1439097577967024082.jpg
    return path.replace(this.rootPath, "" );
}