摘要:
$.ajax({ type: "post",//请求方式 url: context + "/addition/sendRegEmail.do",//后台路径 async: false, //false为同步,true为异步 dataType:"json",//参数接收格式 data:{ "opr"... 阅读全文
摘要:
public class ZipHelper { public static void compress(InputStream is, OutputStream os, String entry) throws Exception{ byte[] bytes = new byte[1024 * 8... 阅读全文