31 lines
724 B
Markdown
31 lines
724 B
Markdown
- 소스 백업
|
|
```JAVA
|
|
// public int checkAfterResponseLC(String sPecketMsg) {
|
|
.
|
|
.
|
|
.
|
|
|
|
sSlotNO = sPacketArry[10];
|
|
|
|
// String sFindKey = "";
|
|
// Set<Entry<String, ArrayList<String>>> entrySet = packetMap.entrySet();
|
|
// for (Entry<String, ArrayList<String>> entry : entrySet) {
|
|
// if (entry.getValue().get(ARR_IDX_PACKET).equals(sPecketMsg)) {
|
|
//
|
|
// sFindKey = entry.getKey();
|
|
// break;
|
|
// }
|
|
// }
|
|
//
|
|
// if(sFindKey != "") {
|
|
// sSlotNO = packetMap.get(sFindKey).get(ARR_IDX_SLOTNO);
|
|
// }
|
|
|
|
// 위치응답 체크(tb_last_lc, $SYENC,29.. )
|
|
try {
|
|
iCnt = passivlcService.checkResponseLC(Integer.parseInt(sSlotNO), "1"); // 1분 이내 위치수신 확인
|
|
} catch (Exception e) {
|
|
iCnt = 0;
|
|
}
|
|
|
|
``` |