@Test public void pve() { HttpClientUtil http = new HttpClientUtil(); Map<String, String> map = new HashMap<String, String>(); map.put("mod", "battle"); map.put("act", "pve"); map.put("uid", "2"); map.put("auth_key", "aaaa"); map.put("auth_time", "12345"); map.put("args", "{\"battleId\":1}"); map.put("seq", "1"); String s = http.post("http://localhost:8080/slg/", map); System.out.println(s); }
@Test public void saveTeam() { HttpClientUtil http = new HttpClientUtil(); Map<String, String> map = new HashMap<String, String>(); map.put("mod", "battle"); map.put("act", "saveTeam"); map.put("uid", "1"); map.put("auth_key", "c4ca4238a0b923820dcc509a6f75849b"); map.put("auth_time", "1400069582722"); map.put( "args", "{\"team\":{\"0\":0,\"1\":1,\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"6\":0,\"7\":0,\"8\":0}}"); map.put("seq", "1"); String s = http.post("http://localhost:8080/slg/", map); System.out.println(s); }