public class MytestMutliThread implements Runnable{
Map<String, Object> postData = new HashMap<String, Object>();
String totalUrl = "http://xxxxx";
String name = "MFF";
String pwd = "1111";
String method = "login.do";
@Override
public void run(){
String url = "xxxxx/aixuepadtios/login.do";
String s = null;
try {
s = sign.getLoginSign(postData, name, pwd, method);
} catch (Exception e) {
e.printStackTrace();
}
postData.put("sign", s);
postData.remove("method");
String json = HttpRequestUtil.doPost(url, postData, "UTF-8");
System.out.println("----返回结果-----" + json);
try {
readFromExcelDemo1("outPut");
} catch (IOException e) {
e.printStackTrace();
}
String regexSchoolId = "schoolId\":(.*),\"jid";
String regexGradeId= "gradeId\":([0-9]+),\"classList";
String regexSubjectId = "subjectId\":([0-9]+),\"classTag";
String schoolID = JsonResults.getParamByRex(json,regexSchoolId);
System.out.println("schoolID========"+schoolID);
String gradeId = JsonResults.getParamByRex(json,regexGradeId);
System.out.println("gradeId========"+gradeId);
String subjectId = JsonResults.getParamByRex(json,regexSubjectId);
System.out.println("subjectId========"+subjectId);
try {
writeToExcelByParam(schoolID,gradeId,subjectId,"loginResults2");
} catch (IOException e) {
e.printStackTrace();
}
try {
readFromExcelDemo1("loginResults");
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
ExecutorService service = Executors.newFixedThreadPool(10);
for (int i = 0; i < 10; i++)
service.execute(new MytestMutliThread());
}
}