메뉴 건너뛰기

조회 수 228 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

동적으로 다른 클래스의 메서드와 필드값을 불러와서 사용해야 하는 경우, Java Reflection을 활용하면 가능하다.

// 메서드-------------------------------------------------------------------------
Method getSomethingMethod = ClassName.getClass().getDeclaredMethod("getSomething", String.class);
getSomethingMethod.setAccessible(true); // private 함수 접근 허용.
String someString = (String) getSomethingMethod.invoke("something");
 
 
// 불러올 메서드가 static일 때.
Method getSomethingMethod = ClassName.class.getDeclaredMethod("getSomething", MemberVo.class, String.class); // getClass() 대신 class
getSomethingMethod.setAccessible(true); // private 접근 허용
String someString = (String) getSomethingMethod.invoke(null, memberVo, "something"); // null
//--------------------------------------------------------------------------------
 
// 필드---------------------------------------------------------------------------
Field pathField = ClassName.getClass().getDeclaredField("urlPath");
if(!pathField.isAccessible()) pathField.setAccessible(true); // private 접근 허용
String pathVal = (String) pathField.get(ClassName.class);
 
// 불어올 필드가 static일 때.
Field pathField = ClassName.class.getDeclaredField("urlPath");
if(!pathField.isAccessible()) pathField.setAccessible(true); // private 접근 허용
String pathVal = (String) pathField.get(ClassName.class);
//--------------------------------------------------------------------------------

 


List of Articles
번호 제목 날짜 조회 수
132 자바 int 값 자리수 구하기 file 2023.02.15 171
131 자바 대소문자 확인하는 방법 file 2023.02.15 232
130 HashMap 사용하기 file 2021.03.31 236
129 [객체 지향 언어의 이해] 업캐스팅과 다운캐스팅 file 2021.03.31 268
128 쓰레드 (Thread) 사용하기 file 2021.03.31 197
127 TCP 소켓 프로그래밍 01 - Server/Client 일대일 연결 file 2021.03.31 281
126 자바 String Class 문자열 처리 함수에 대한 정리 2021.03.31 209
125 자바 - 공백 문자 제거하기 (trim, replaceAll) file 2021.03.31 276
124 jstl <c:url value=""> 사용시 ;jsessionid= 붙는 현상 file 2021.03.31 350
» Reflection을 활용한 메서드, 필드 값 불러오기. 2021.03.31 228
122 java에서 이전 URL 알아내기 2021.03.25 1082
121 log4j에서 로그가 출력되지 않는 문제 수정 2021.03.25 518
120 Gmail 메일 서버를 이용해서 메일 보내기 file 2020.06.29 387
119 사용자의 IP를 가져오기 (IPv4) 2020.06.29 1832
118 XML to JSON , JSON to Map 2020.06.29 623
117 국제 시간에 따른 날짜 출력 2020.06.29 230
116 자바 랜덤 함수(Java random) file 2019.03.05 859
115 이클립스에서 같은 파일을 여러 편집창으로 띄우기 file 2019.03.05 769
114 이클립에서 FTP 접속하면서 Operation failed. File system input or output error 가 날때 file 2019.03.05 990
113 이클립에서 Javadoc 생성시 unmappable character for encoding MS949 에러가 발생할때 file 2019.03.05 838
Board Pagination Prev 1 2 3 4 5 6 7 8 Next
/ 8

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved