jiapeng 6 ans auparavant
Parent
commit
f4c7e2fbd7

+ 41 - 1
src/main/java/com/ekexiu/project/bridge/collect/AlarmDataItem.java

@ -1,13 +1,19 @@
1 1
package com.ekexiu.project.bridge.collect;
2 2

3 3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
4 5
import org.jfw.apt.orm.annotation.entry.Table;
5 6
import org.jfw.apt.orm.core.enums.DE;
6 7

8
@PrimaryKey({"id","seq"})
7 9
@Table(descp="报警数据")
8 10
public class AlarmDataItem {
9 11
    private String id;
10

12
    private int seq;
13
    private String stime;
14
    private String atime;
15
    private String data;
16
    
11 17
    @Column(descp="报警编号",value=DE.text_de)
12 18
	public String getId() {
13 19
		return id;
@ -16,6 +22,40 @@ public class AlarmDataItem {
16 22
	public void setId(String id) {
17 23
		this.id = id;
18 24
	}
25
	@Column(descp="传感内部编号",value=DE.int_de)
26
	public int getSeq() {
27
		return seq;
28
	}
29

30
	public void setSeq(int seq) {
31
		this.seq = seq;
32
	}
33
    @Column(descp="起始时间",value=DE.text_de)
34
	public String getStime() {
35
		return stime;
36
	}
37

38
	public void setStime(String stime) {
39
		this.stime = stime;
40
	}
41
    @Column(descp="报警时间",value=DE.text_de)
42
	public String getAtime() {
43
		return atime;
44
	}
45

46
	public void setAtime(String atime) {
47
		this.atime = atime;
48
	}
49
    @Column(descp="报警数据,共300个数据点,以英文逗号分隔",value=DE.text_de)
50
	public String getData() {
51
		return data;
52
	}
53

54
	public void setData(String data) {
55
		this.data = data;
56
	}
19 57
    
58
	
59
	
20 60
    
21 61
}

+ 74 - 0
src/main/java/com/ekexiu/project/bridge/collect/AlarmMsg.java

@ -0,0 +1,74 @@
1
package com.ekexiu.project.bridge.collect;
2

3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
7
import org.jfw.apt.orm.core.enums.DE;
8

9

10
@PrimaryKey({"uid","aid"})
11
@Table(descp="报警消息")
12
public class AlarmMsg {
13
	private String uid;
14
	private String aid;
15
	private String seq;
16
	private int  device;
17
	private boolean readed;
18
	private String readTime;
19
	private String createTime;
20
	
21
	@Column(descp="用户ID",value=DE.refid_32)
22
	public String getUid() {
23
		return uid;
24
	}
25
	public void setUid(String uid) {
26
		this.uid = uid;
27
	}
28
	@Column(descp="报警ID",value=DE.text_de)
29
	public String getAid() {
30
		return aid;
31
	}
32
	public void setAid(String aid) {
33
		this.aid = aid;
34
	}
35
	@Column(descp="采集服务器内部编号",value=DE.text_de)
36
	public String getSeq() {
37
		return seq;
38
	}
39
	public void setSeq(String seq) {
40
		this.seq = seq;
41
	}
42
	@Column(descp="采集盒内部编号",value=DE.int_de)
43
	public int getDevice() {
44
		return device;
45
	}
46
	public void setDevice(int device) {
47
		this.device = device;
48
	}
49
	@Column(descp="是否已读",value=DE.boolean_de,fixSqlValueWithInsert="'0'")
50
	public boolean isReaded() {
51
		return readed;
52
	}
53
	public void setReaded(boolean readed) {
54
		this.readed = readed;
55
	}
56
	@Column(descp="读取时间",value=DE.Text_de)
57
	public String getReadTime() {
58
		return readTime;
59
	}
60
	public void setReadTime(String readTime) {
61
		this.readTime = readTime;
62
	}
63
	@Column(descp="创建时间(YYYYMMDDHH24MISS)不可修改", handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithInsert = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = true, nullable = false, queryable = true, renewable = false)
64
	public String getCreateTime() {
65
		return createTime;
66
	}
67
	public void setCreateTime(String createTime) {
68
		this.createTime = createTime;
69
	}
70
	
71
	
72
	
73
	
74
}

+ 6 - 0
src/main/java/com/ekexiu/project/bridge/collect/CollectDao.java

@ -31,4 +31,10 @@ public interface CollectDao {
31 31
	@SelectList
32 32
	@OrderBy("ORDER BY CTIME")
33 33
	List<WaveDataItem> query(Connection con,String seq,int did,int cid,@Alias("ctime") @GtEq String btime,@Alias("ctime") @LtEq String etime)throws SQLException;
34
	
35
	@Insert
36
	int insert(Connection con,AlarmMsg msg)throws SQLException;
37
	@Insert
38
	@Batch
39
	int[] insert(Connection con,AlarmDataItem[] items)throws SQLException;
34 40
}

+ 1 - 17
src/main/java/com/ekexiu/project/bridge/collect/WaveDataItem.java

@ -14,8 +14,7 @@ public class WaveDataItem {
14 14
	private int cid;
15 15
	private int hvalue;
16 16
	private int lvalue;
17
	private String htime;
18
	private String ltime;
17

19 18
	
20 19
	
21 20
	@Column(descp="采集服务器内部编号",value=DE.text_de)
@ -60,19 +59,4 @@ public class WaveDataItem {
60 59
	public void setLvalue(int lvalue) {
61 60
		this.lvalue = lvalue;
62 61
	}
63
	@Column(descp="一秒内最大幅度值时间(YYYYMMDDHH24MISS.zzz)",value=DE.text_de)
64
	public String getHtime() {
65
		return htime;
66
	}
67
	public void setHtime(String htime) {
68
		this.htime = htime;
69
	}
70
	@Column(descp="一秒内最小幅度值时间(YYYYMMDDHH24MISS.zzz)",value=DE.text_de)
71
	public String getLtime() {
72
		return ltime;
73
	}
74
	public void setLtime(String ltime) {
75
		this.ltime = ltime;
76
	}
77
	
78 62
}

+ 199 - 0
src/main/java/com/ekexiu/project/bridge/servlet/AlarmDataServlet.java

@ -0,0 +1,199 @@
1
package com.ekexiu.project.bridge.servlet;
2

3
import java.io.ByteArrayOutputStream;
4
import java.io.IOException;
5
import java.io.InputStream;
6
import java.lang.reflect.Type;
7
import java.sql.Connection;
8
import java.sql.SQLException;
9
import java.util.HashMap;
10
import java.util.LinkedList;
11
import java.util.List;
12
import java.util.Map;
13

14
import javax.servlet.ServletException;
15
import javax.servlet.http.HttpServlet;
16
import javax.servlet.http.HttpServletRequest;
17
import javax.servlet.http.HttpServletResponse;
18
import javax.sql.DataSource;
19

20
import org.jfw.util.ConstData;
21
import org.jfw.util.context.JfwAppContext;
22
import org.jfw.util.io.IoUtil;
23
import org.jfw.util.jdbc.JdbcUtil;
24
import org.jfw.util.json.JsonService;
25
import org.jfw.util.reflect.TypeReference;
26

27
import com.ekexiu.project.bridge.collect.AlarmDataItem;
28
import com.ekexiu.project.bridge.collect.AlarmMsg;
29
import com.ekexiu.project.bridge.collect.CollectDao;
30
import com.ekexiu.project.bridge.collect.CollectService;
31
import com.ekexiu.project.bridge.collect.WaveDataItem;
32
import com.ekexiu.project.bridge.resource.po.Bridge;
33
import com.ekexiu.project.bridge.system.dao.UserDao;
34
import com.ekexiu.project.bridge.system.po.User;
35

36
public class AlarmDataServlet extends HttpServlet {
37
	private static final long serialVersionUID = 4989044137656168797L;
38

39

40
	public static Type DATA_TYPE=new TypeReference<Map<Object,Object>>(){}.getType();
41

42
	private DataSource dataSource;
43
	private CollectDao collectDao;
44
	private UserDao userDao;
45

46
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
47
		response.sendError(400);
48
	}
49

50
	@SuppressWarnings({ "rawtypes", "unchecked" })
51
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
52
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
53
		InputStream in = request.getInputStream();
54
		 List<AlarmDataItem> items = new LinkedList<AlarmDataItem>();
55
		final AlarmMsg msg = new AlarmMsg();
56
		StringBuilder sb = new StringBuilder();
57
		List<Object> datas = null;
58
		try {
59
			byte[] buf = new byte[8192];
60
			IoUtil.copy(in, baos, buf);
61
			Map<Object,Object> map = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
62
			Object tmpObj = map.get("node_id");
63
			if(tmpObj != null && tmpObj instanceof String){
64
				msg.setSeq((String)tmpObj);
65
				tmpObj = map.get("alarm_no");
66
				if(tmpObj != null && tmpObj instanceof String){
67
					msg.setAid((String)tmpObj);
68
					tmpObj = map.get("box_id");
69
					if(tmpObj != null && tmpObj instanceof String){
70
						try{
71
							msg.setDevice(Integer.parseInt((String)tmpObj));
72
							tmpObj = map.get("data");
73
							if(tmpObj != null && tmpObj instanceof List){
74
								datas=(List<Object>) tmpObj;
75
							}
76
						}catch(Exception e){
77
						}
78
					}
79
				}
80
			}
81
			if(datas!=null){
82
				for(Object obj:datas){
83
					AlarmDataItem item = new AlarmDataItem();
84
					if(obj !=null && obj instanceof Map){
85
						map = (Map<Object,Object>)obj;
86
						item.setId(msg.getAid());
87
						tmpObj = map.get("channel_id");
88
						if(tmpObj != null && tmpObj instanceof String){
89
							try{
90
								item.setSeq(Integer.parseInt((String)tmpObj));
91
							}catch(Exception e){
92
								items.clear();
93
								break;
94
							}
95
						}else{
96
							items.clear();
97
							break;
98
						}
99
						tmpObj = map.get("start_time");
100
						if(tmpObj != null && tmpObj instanceof String){
101
								item.setStime((String)tmpObj);
102
						}else{
103
							items.clear();
104
							break;
105
						}
106
						tmpObj = map.get("alarm_time");
107
						if(tmpObj != null && tmpObj instanceof String){
108
								item.setStime((String)tmpObj);
109
						}else{
110
							items.clear();
111
							break;
112
						}
113
						
114
						sb.setLength(0);
115
						tmpObj = map.get("value");
116
						if(tmpObj != null && tmpObj instanceof List){
117
							for(Object val:((List)tmpObj)){
118
								sb.append(val.toString()).append(",");
119
							}
120
						}
121
						if(sb.length()>0){
122
							item.setData(sb.substring(0,sb.length()-1));
123
						}else{
124
							items.clear();
125
							break;
126
						}
127
					}
128
				}
129
			}
130
		} finally {
131
			in.close();
132
		}
133
		
134
		Connection con = this.dataSource.getConnection();
135
		try{
136
		//	final Bridge bridge = this
137
			
138
		//	List<User> users = this.userDao.queryByBridgeCode(con, msg.getSeq(), true);
139
			
140
			
141
		}finally{
142
			JdbcUtil.close(con);
143
		}
144
		
145
		response.setDateHeader("Expires", 0);
146
		response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
147
		response.addHeader("Cache-Control", "post-check=0, pre-check=0");
148
		response.setHeader("Pragma", "no-cache");
149
		if (null == request.getCharacterEncoding()) {
150
			request.setCharacterEncoding("UTF-8");
151
			request.setCharacterEncoding("UTF-8");
152
		}
153
		response.setContentType("application/json");
154
		java.io.PrintWriter out = response.getWriter();
155
		if (items.isEmpty()) {
156
			out.write("{\"status\":0,}");
157
			return;
158
		}
159
		out.write("{\"status\":1,}");
160
		synchronized (DATA_CACHE) {
161
			DATA_CACHE.put(items.get(0).getSeq(), items);
162
		}
163
		JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
164
			@Override
165
			public void run() {
166
				try {
167
					Connection con = dataSource.getConnection();
168
					try {
169
						collectDao.insert(con, items);
170
						con.commit();
171
					} catch (SQLException e) {
172
						con.rollback();
173
					} finally {
174
						con.close();
175
					}
176
				} catch (Throwable thr) {
177
				}
178

179
			}
180
		});
181
	}
182

183

184
	@Override
185
	public void init() throws ServletException {
186
		this.dataSource = JfwAppContext.getDataSource();
187
		if (this.dataSource == null) {
188
			throw new ServletException("not found datasource");
189
		}
190
		this.collectDao = (CollectDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_collect_CollectDao");
191
		if (this.dataSource == null) {
192
			throw new ServletException("not found collectDao");
193
		}
194
		this.userDao = (UserDao) JfwAppContext.getBeanFactory().getBean("com_ekexiu_project_bridge_system_dao_UserDao");
195
		if (userDao == null) {
196
			throw new ServletException("not found userDao");
197
		}
198
	}
199
}

+ 85 - 168
src/main/java/com/ekexiu/project/bridge/servlet/WaveDataServlet.java

@ -18,7 +18,6 @@ import javax.servlet.http.HttpServletResponse;
18 18
import javax.sql.DataSource;
19 19

20 20
import org.jfw.util.ConstData;
21
import org.jfw.util.DateUtil;
22 21
import org.jfw.util.context.JfwAppContext;
23 22
import org.jfw.util.io.IoUtil;
24 23
import org.jfw.util.json.JsonService;
@ -36,8 +35,7 @@ public class WaveDataServlet extends HttpServlet {
36 35
	@SuppressWarnings("unused")
37 36
	private static final LinkedList<List<WaveDataItem>> EMPTY_LIST = new LinkedList<List<WaveDataItem>>();
38 37

39
	public static Type DATA_TYPE = new TypeReference<Map<String, Object>>() {
40
	}.getType();
38
	public static Type DATA_TYPE=new TypeReference<List<Object>>(){}.getType();
41 39

42 40
	private DataSource dataSource;
43 41
	private CollectDao collectDao;
@ -46,95 +44,83 @@ public class WaveDataServlet extends HttpServlet {
46 44
		response.sendError(400);
47 45
	}
48 46

49
	@SuppressWarnings("unchecked")
47
	@SuppressWarnings({ "rawtypes" })
50 48
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
51 49
		ByteArrayOutputStream baos = new ByteArrayOutputStream();
52 50
		InputStream in = request.getInputStream();
53 51
		final List<WaveDataItem> items = new LinkedList<WaveDataItem>();
54
		long currTime = System.currentTimeMillis();
55
		String ctime = DateUtil.formatDateTime(currTime);
56
		// String otime = DateUtil.formatDateTime(currTime -(5* 60*1000));
57
		String serverId = null;
58 52
		try {
59 53
			byte[] buf = new byte[8192];
60 54
			IoUtil.copy(in, baos, buf);
61
			Map<String, Object> map = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
62
			Object tmpObj = map.get("node_id");
63
			if (null != tmpObj && (tmpObj instanceof String)) {
64
				serverId = (String) tmpObj;
65
				tmpObj = map.get("data");
66
				if (null != tmpObj && (tmpObj instanceof List)) {
67
					List<Object> ds = (List<Object>) tmpObj;
68
					for (Object wo : ds) {
69
						WaveDataItem item = new WaveDataItem();
70
						item.setCtime(ctime);
71
						item.setSeq(serverId);
72
						if (wo instanceof Map) {
73
							Map<Object, Object> im = (Map<Object, Object>) wo;
74
							tmpObj = im.get("box_id");
75
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
76
								items.clear();
77
								break;
78
							}
79
							item.setDid(((Double) tmpObj).intValue());
80
							tmpObj = im.get("box_id");
81
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
82
								items.clear();
83
								break;
84
							}
85
							item.setCid(((Double) tmpObj).intValue());
86
							tmpObj = im.get("value");
87
							if (null == tmpObj && (!(tmpObj instanceof List))) {
88
								items.clear();
89
								break;
90
							}
91
							List<Object> vs = (List<Object>) tmpObj;
92
							if (vs.size() != 2) {
93
								items.clear();
94
								break;
95
							}
96
							tmpObj = vs.get(0);
97
							if (tmpObj == null || (!(tmpObj instanceof List)) || (2 != ((List<?>) tmpObj).size())) {
98
								items.clear();
99
								break;
100
							}
101
							List<Object> vi = (List<Object>) tmpObj;
102
							tmpObj = vi.get(0);
103
							if (tmpObj == null || (!(tmpObj instanceof String))) {
104
								items.clear();
105
								break;
106
							}
107
							item.setLtime((String) tmpObj);
108
							tmpObj = vi.get(1);
109
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
110
								items.clear();
111
								break;
112
							}
113
							item.setLvalue(((Double) tmpObj).intValue());
114
							tmpObj = vs.get(1);
115
							if (tmpObj == null || (!(tmpObj instanceof List)) || (2 != ((List<?>) tmpObj).size())) {
116
								items.clear();
117
								break;
118
							}
119
							vi = (List<Object>) tmpObj;
120
							tmpObj = vi.get(0);
121
							if (tmpObj == null || (!(tmpObj instanceof String))) {
122
								items.clear();
123
								break;
124
							}
125
							item.setHtime((String) tmpObj);
126
							tmpObj = vi.get(1);
127
							if (tmpObj == null || (!(tmpObj instanceof Double))) {
128
								items.clear();
129
								break;
130
							}
131
							item.setHvalue(((Double) tmpObj).intValue());
132
							items.add(item);
133
						} else {
55
			List<Object> param = JsonService.fromJson(new String(baos.toByteArray(), ConstData.UTF8), DATA_TYPE);
56
			for (Object obj : param) {
57
				if (obj instanceof List) {
58
					WaveDataItem item = new WaveDataItem();
59
					Object tmpObj = ((List) obj).get(0);
60
					if (tmpObj instanceof String) {
61
						item.setSeq((String) tmpObj);
62
					} else {
63
						items.clear();
64
						break;
65
					}
66
					tmpObj = ((List) obj).get(3);
67
					if (tmpObj instanceof String) {
68
						item.setCtime((String) tmpObj);
69
					} else {
70
						items.clear();
71
						break;
72
					}
73
					tmpObj = ((List) obj).get(1);
74
					if (tmpObj instanceof String) {
75
						try {
76
							item.setDid(Integer.parseInt((String) tmpObj));
77
						} catch (Exception e) {
78
							items.clear();
79
							break;
80
						}
81
					} else {
82
						items.clear();
83
						break;
84
					}
85
					tmpObj = ((List) obj).get(2);
86
					if (tmpObj instanceof String) {
87
						try {
88
							item.setCid(Integer.parseInt((String) tmpObj));
89
						} catch (Exception e) {
90
							items.clear();
91
							break;
92
						}
93
					} else {
94
						items.clear();
95
						break;
96
					}
97
					tmpObj = ((List) obj).get(4);
98
					if (tmpObj instanceof String) {
99
						try {
100
							item.setLvalue(Integer.parseInt((String) tmpObj));
101
						} catch (Exception e) {
102
							items.clear();
103
							break;
104
						}
105
					} else {
106
						items.clear();
107
						break;
108
					}
109
					tmpObj = ((List) obj).get(5);
110
					if (tmpObj instanceof String) {
111
						try {
112
							item.setHvalue(Integer.parseInt((String) tmpObj));
113
						} catch (Exception e) {
134 114
							items.clear();
135 115
							break;
136 116
						}
117
					} else {
118
						items.clear();
119
						break;
137 120
					}
121
				} else {
122
					items.clear();
123
					break;
138 124
				}
139 125
			}
140 126
		} finally {
@ -154,38 +140,31 @@ public class WaveDataServlet extends HttpServlet {
154 140
			out.write("{\"status\":0,}");
155 141
			return;
156 142
		}
157

158
		List<WaveDataItem> olist = null;
143
		out.write("{\"status\":1,}");
159 144
		synchronized (DATA_CACHE) {
160
			olist = DATA_CACHE.get(serverId);
145
			DATA_CACHE.put(items.get(0).getSeq(), items);
161 146
		}
162
		if (olist == null || olist.get(0).getCtime().compareTo(ctime) < 0) {
163
			synchronized (DATA_CACHE) {
164
				DATA_CACHE.put(serverId, items);
165
			}
166
			JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
167
				@Override
168
				public void run() {
147
		JfwAppContext.getScheduledExecutorService().execute(new Runnable() {
148
			@Override
149
			public void run() {
150
				try {
151
					Connection con = dataSource.getConnection();
169 152
					try {
170
						Connection con = dataSource.getConnection();
171
						try {
172
							collectDao.insert(con, items);
173
							con.commit();
174
						} catch (SQLException e) {
175
							con.rollback();
176
						} finally {
177
							con.close();
178
						}
179
					} catch (Throwable thr) {
153
						collectDao.insert(con, items);
154
						con.commit();
155
					} catch (SQLException e) {
156
						con.rollback();
157
					} finally {
158
						con.close();
180 159
					}
181

160
				} catch (Throwable thr) {
182 161
				}
183
			});
184
		}
185
		out.write("{\"status\":1,}");
186
		return;
162

163
			}
164
		});
187 165
	}
188 166

167

189 168
	@Override
190 169
	public void init() throws ServletException {
191 170
		this.dataSource = JfwAppContext.getDataSource();
@ -202,66 +181,4 @@ public class WaveDataServlet extends HttpServlet {
202 181
		}
203 182
		s.setWaveCache(DATA_CACHE);
204 183
	}
205

206
	public static void main(String args[]) throws Exception {
207
		Map<Object, Object> map = JsonService.fromJson("{\r\n" + "\"node_id\": \"12345\",\r\n" + "    \"data\": [	\r\n" + "        {		\r\n"
208
				+ "            \"box_id\": 1, \r\n" + "            \"channel_id\": 1, 	\r\n" + "            \"value\": [	\r\n" + "                [\r\n"
209
				+ "                    \"20180101101010.000\",	\r\n" + "                    -12	\r\n" + "                ], \r\n" + "                [\r\n"
210
				+ "                    \"20180101101011.500\", \r\n" + "                    13			\r\n" + "                ]\r\n" + "            ]\r\n"
211
				+ "        }, \r\n" + "        {\r\n" + "            \"box_id\": 2, \r\n" + "            \"channel_id\": 9, \r\n"
212
				+ "            \"value\": [\r\n" + "                [\r\n" + "                    \"20180101101010.100\", \r\n" + "                    -2\r\n"
213
				+ "                ], \r\n" + "                [\r\n" + "                    \"20180101101011.200\", \r\n" + "                    34\r\n"
214
				+ "                ]\r\n" + "            ]\r\n" + "        }\r\n" + "    ]\r\n" + "}", DATA_TYPE);
215

216
		outMap(0, map);
217

218
	}
219

220
	@SuppressWarnings("unchecked")
221
	public static void outList(int left, List<Object> list) {
222
		for (Object obj : list) {
223
			for (int i = 0; i < left; ++i) {
224
				System.out.print(" ");
225
			}
226
			System.out.print(obj.getClass().getName() + "  ");
227
			if (obj instanceof List) {
228
				System.out.println("===>List");
229
				outList(left + 8, (List<Object>) obj);
230
			} else if (obj instanceof Map) {
231
				System.out.println("===>Map");
232
				outMap(left + 8, (Map<Object, Object>) obj);
233
			} else {
234
				System.out.println("===>" + ((obj instanceof Double) ? ((Double) obj).intValue() : obj.toString()));
235
			}
236

237
		}
238

239
	}
240

241
	@SuppressWarnings("unchecked")
242
	public static void outMap(int left, Map<Object, Object> map) {
243
		for (Map.Entry<Object, Object> entry : map.entrySet()) {
244
			for (int i = 0; i < left; ++i) {
245
				System.out.print(" ");
246
			}
247
			Object obj = entry.getKey();
248
			System.out.println("KEY:" + obj.getClass().getName() + "    " + obj.toString());
249
			for (int i = 0; i < left; ++i) {
250
				System.out.print(" ");
251
			}
252
			obj = entry.getValue();
253
			System.out.print("VALUE:");
254
			if (obj instanceof List) {
255
				System.out.println("===>List");
256
				outList(left + 8, (List<Object>) obj);
257
			} else if (obj instanceof Map) {
258
				System.out.println("===>Map");
259
				outMap(left + 8, (Map<Object, Object>) obj);
260
			} else {
261
				System.out.println("===>" + obj.getClass().getName() + "       " + obj.toString());
262
			}
263

264
		}
265
	}
266

267 184
}