getMethod의 활용
GetMethod 함수는 API 호출시에 사용되는 경우가 있다. 해당하는 메소드의 이름, 즉 메소드명만(String) 알고 있어도 그 해당하는 메소드를 호출할 수 있다. * 예제 /* 호출 URL setting */ String URL = ospApplicationConfig.ospcofing + "test/testapplication"; GetMethod getMethod = null; /* query Param setting */ NameValuePair[] nameValePairs = new NameValuePair[1]; nameValuePairts[0] = new NameValuePair("",""); getMethod = new GetMethod(URL); getMethod.addRequest..
Developer/java
2014. 3. 31. 13:59