-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathJigsawDemo.java
75 lines (53 loc) · 2.14 KB
/
JigsawDemo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package demo;
import com.upyun.JigsawHandler;
import com.upyun.Result;
import com.upyun.UpException;
import org.json.JSONArray;
import org.json.JSONObject;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
public class JigsawDemo {
// 运行前先设置好以下三个参数
private static final String BUCKET_NAME = "空间名称";
private static final String OPERATOR_NAME = "操作员名称";
private static final String OPERATOR_PWD = "操作员密码";
public static void main(String[] args) {
testJigsaw();
}
public static void testJigsaw() {
JigsawHandler handler = new JigsawHandler(BUCKET_NAME, OPERATOR_NAME, OPERATOR_PWD);
//初始化参数组 Map
Map<String, Object> paramsMap = new HashMap<String, Object>();
paramsMap.put(JigsawHandler.Params.BUCKET_NAME, BUCKET_NAME);
paramsMap.put(JigsawHandler.Params.NOTIFY_URL, "http://httpbin.org/post");
paramsMap.put(JigsawHandler.Params.APP_NAME, "jigsaw");
//已json格式生成任务信息
JSONArray array = new JSONArray();
JSONObject json = new JSONObject();
String[][] pigs = new String[1][3];
pigs[0][0] = "/result/convert/convert-00.png";
pigs[0][1] = "/result/convert/convert-01.png";
pigs[0][2] = "/result/convert/convert-03.png";
//添加处理参数
json.put(JigsawHandler.Params.IMAGE_MATRIX, pigs);
json.put(JigsawHandler.Params.SAVE_AS, "/result/jigsaw/a.jpg");
array.put(json);
//添加任务信息
paramsMap.put(JigsawHandler.Params.TASKS, array);
try {
Result result = handler.process(paramsMap);
assertNotNull(result);
assertTrue(result.isSucceed());
assertNotNull(result.getMsg());
String[] ids = handler.getTaskId(result.getMsg());
assertNotNull(ids);
} catch (IOException e) {
e.printStackTrace();
} catch (UpException e) {
e.printStackTrace();
}
}
}