<script type="text/javascript">$('html').css('display','none');</script>
@RequestMapping(value="editor_html.html",method=RequestMethod.GET)
public void editorHtml(HttpServletRequest request,HttpServletResponse response) throws IOException{
String uri = request.getParameter("url").toString();
uri = uri.substring(uri.indexOf("/third/ueditor/") + 1);
log.info(uri);
PrintWriter out = response.getWriter();
out.write(uri);
out.flush();
out.close();
}