import java.net.InetAddress;
import java.net.URL;
import java.net.URLConnection;
InetAddress hostIp = InetAddress.getLocalHost();
log.error("hostIp.getHostAddress()=>" + hostIp.getHostAddress());
URL url = null;
URLConnection urlcnn = null;
String checkIp = "10.10.10.120";
String resultCheckIp = "";
try {
url = new URL("http://" + checkIp + "/action.do?cmd=localeMsgListUrl");
urlcnn = url.openConnection();
urlcnn.setConnectTimeout(1000);
urlcnn.getContent();
}catch(Exception e) {
//실패 시
resultCheckIp += " , " + checkIp[i];
map.put("result", resultCheckIp);
}
'Java' 카테고리의 다른 글
[Java] shape file header 정보 읽기 (0) | 2014.01.17 |
---|---|
[Java] String.format (0) | 2013.12.31 |
[Java] 특정위치 파일 모두 삭제 처리. (0) | 2013.10.14 |
[Java] getBytes 테스트 (0) | 2013.02.27 |
[Java] session 중복 처리 문제 (0) | 2012.12.13 |