|
|
@ -661,11 +661,13 @@ public class Petition extends AbstractEntity {
|
|
|
|
|
|
|
|
|
|
|
|
private String reason;
|
|
|
|
private String reason;
|
|
|
|
|
|
|
|
|
|
|
|
/**새 Violation을(를) 생성한다.
|
|
|
|
/**민원 수신 파일의 내용을 설정한다.
|
|
|
|
* @param reason 민원 수신 파일의 내용
|
|
|
|
* @param reason 민원 수신 파일의 내용
|
|
|
|
|
|
|
|
* @return 현재 Violation
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public Violation (String reason) {
|
|
|
|
public Violation setReason(String reason) {
|
|
|
|
this.reason = reason;
|
|
|
|
this.reason = reason;
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**민원 수신 파일의 내용에서 단속 차량, 단속 일시 정보를 추출한다.
|
|
|
|
/**민원 수신 파일의 내용에서 단속 차량, 단속 일시 정보를 추출한다.
|
|
|
@ -723,6 +725,23 @@ public class Petition extends AbstractEntity {
|
|
|
|
return found;
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**동/읍/면 이름을 추출한다.
|
|
|
|
|
|
|
|
* @param location 위치
|
|
|
|
|
|
|
|
* @return 동/읍/면 이름
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public String getDong(String location) {
|
|
|
|
|
|
|
|
if (Assert.isEmpty(location)) return "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String[] suffix = {"동", "읍", "면"};
|
|
|
|
|
|
|
|
for (String token: location.split(" ")) {
|
|
|
|
|
|
|
|
for (String tail: suffix) {
|
|
|
|
|
|
|
|
if (token.endsWith(tail))
|
|
|
|
|
|
|
|
return token;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**민원 수신 파일의 제목에서 사고 내역 정보를 추출한다.
|
|
|
|
/**민원 수신 파일의 제목에서 사고 내역 정보를 추출한다.
|
|
|
|
* @param title 민원 수신 파일의 제목
|
|
|
|
* @param title 민원 수신 파일의 제목
|
|
|
|
* @return 사고 내역 정보
|
|
|
|
* @return 사고 내역 정보
|
|
|
@ -762,4 +781,10 @@ public class Petition extends AbstractEntity {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
|
|
String[] locations = {"경기도 파주시 금촌동 798", "경기도 파주시 문산읍 당동리 892", "경기도 파주시 월롱면 덕은리 1300"};
|
|
|
|
|
|
|
|
Violation v = new Violation();
|
|
|
|
|
|
|
|
for (String loc: locations)
|
|
|
|
|
|
|
|
System.out.println(v.getDong(loc));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|