|
@@ -456,7 +456,7 @@ public class KuaiDi100 {
|
|
|
Map<String,Map<String,Object>> data = new HashMap<>();
|
|
|
Map<String,Object> info = new HashMap<>();
|
|
|
List<HashMap> list = new ArrayList<>();
|
|
|
- for(int i=context.size()-1;i > 0;i--){
|
|
|
+ for(int i=context.size()-1;i >= 0;i--){
|
|
|
JSONObject job = context.getJSONObject(i);
|
|
|
HashMap<String,String> map = new HashMap<>();
|
|
|
|
|
@@ -737,7 +737,7 @@ public class KuaiDi100 {
|
|
|
/*System.out.println(kuaidi.selectCourierSignTime("yuantong","yt9053971537384"));*/
|
|
|
/*System.out.println(kuaidi.selectCourierSF("106494280800","SF","291003792023"));*/
|
|
|
try {
|
|
|
- String result = kuaidi.selectCourierSF("SF", "288904538945");
|
|
|
+ String result = kuaidi.selectCourierSF("SF", "291126767780");
|
|
|
System.out.print(result);
|
|
|
if(result != null){
|
|
|
JSONObject jn = JSONObject.fromObject(result);
|
|
@@ -747,7 +747,7 @@ public class KuaiDi100 {
|
|
|
Map<String,Map<String,String>> data = new HashMap<>();
|
|
|
Map<String,String> info = new HashMap<>();
|
|
|
List<HashMap> list = new ArrayList<>();
|
|
|
- for(int i=context.size()-1;i > 0;i--){
|
|
|
+ for(int i=context.size()-1;i >= 0;i--){
|
|
|
JSONObject job = context.getJSONObject(i);
|
|
|
HashMap<String,String> map = new HashMap<>();
|
|
|
map.put("time",job.getString("AcceptTime"));
|