摘要:
@Transactional(readOnly=false) public void importData() { ExcelUtil excelUtil = new ExcelUtil(); System.out.println("jinru"); //读取excel数据 List result 阅读全文
摘要:
function check(e) { var re = /^\d+(?=.{0,1}\d+\(|\))/ if (e.value != "") { if (!re.test(e.value)) { alert("请输入正确的数字"); e.value = ""; e.focus(); } } } 阅读全文
摘要:
public static String encode(String s) { if (s == null) return null; String res = ""; try { res = new sun.misc.BASE64Encoder().encode(s.getBytes("utf-8 阅读全文