http 短信接口发送短信的时候中文乱码
http 短信接口发送短信的时候中文乱码? 所有编码格式我都已经统一了,为什么
你可以参考下我调用url地址的方法,感觉你和我以前用的一个短信接口一个样呢?参数是一样的
// "UTF-8"));
// beans.setMobile(request.getParameter("mobile"));
//
// Date date = new Date();
// SimpleDateFormat format = new
// SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// String mo_date = format.format(date);
// beans.setMo_date(mo_date);
// System.out.println(mo_date);
// Pattern p = Pattern
// .compile("^0?(13[0-9]
[解决办法]
15[012356789]
[解决办法]
18[0236789]
[解决办法]
14[57])[0-9]{8}$");
// // 手机格式
// Matcher m = p.matcher(beans.getMo_From());
// flag = m.matches();
// if (flag == true) {
// Pattern pt = Pattern
// .compile("^0?(13[0-9]
[解决办法]
15[012356789]
[解决办法]
18[0236789]
[解决办法]
14[57])[0-9]{8}$");
// // 手机格式
// Matcher mt = pt.matcher(beans.getMobile());
// res = mt.matches();
// if (res == true) {
// tpMoDao.insertTpMoBeans(beans);
// } else {
// System.out.println("mobile手机号码格式不正确");
// }
// } else {
// System.out.println("上行手机号码格式不正确");
// }
[解决办法]