码迷,mamicode.com
首页 > Web开发 > 详细

百度编辑器拦截上传图片提交上传腾讯server并返回腾讯url

时间:2017-05-13 11:20:52      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:oca   pen   pre   web   adt   string   path   地方   original   


微信图文编辑时图片必须为上传到腾讯server的url,外连接所有屏蔽,则须要改动百度编辑器的源代码,源代码详细处理地方例如以下图。类为BinaryUploader.java

InputStream is = fileStream.openStream();
State storageState = StorageManager.saveFileByInputStream(is,physicalPath, maxSize);
is.close();


if (storageState.isSuccess()) {
//TODO 处理上传腾讯server
String headurl=PropUtil.getPropertyValue("wx.sz.get.web.url","http://localhost:8080").replace("\"","");
String url =UploadToTX.uploadToTX(physicalPath, headurl+PathFormat.format(savePath));
storageState.putInfo("url", url);
storageState.putInfo("type", suffix);
storageState.putInfo("original", originFileName + suffix);
}


return storageState;

技术分享

百度编辑器拦截上传图片提交上传腾讯server并返回腾讯url

标签:oca   pen   pre   web   adt   string   path   地方   original   

原文地址:http://www.cnblogs.com/claireyuancy/p/6848085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!