반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- tcp
- Collection Framework
- End of Darkness
- 아이패드
- 벨팡
- 아이폰
- 컬렉션 프레임
- 히오스
- 스랄 특성
- game
- 포트(Port)
- 기업의 행포
- 변경된 정보
- tcp네트워크
- 명령어
- 에셋
- TCP 네트워크 방식의 연결
- 나지보 특성
- unity
- 안드로이드
- 나지보
- php 홈디렉토리 변경방법
- 집 정리
- 소캣(Socket)
- 안드로이드 Application Lifecycle
- 비행기 모드
- 리눅스
- 게임
- 어플
- 자바
Archives
- Today
- Total
Do Something IT
[안드로이드] java.lang.reflect.InvocationTargetException 이 발생한 경우 본문
반응형
출처 : http://northface.tistory.com/1
java.lang.reflect.InvocationTargetException
Normally "java.lang.reflect.InvocationTargetException" occurs when java compiler finds
2 different classes with same name in 2 different packages.
when u r importing both classes at a time and when you r trying to create object of that class
it throws "java.lang.reflect.InvocationTargetException" exception .
The solution is that when you are creating the object of the class use package name
also along with class name so that compiler knows what class it has to use.
- answer by google -
해석을 하면 InvocationTargetException이 발생한 이유가
자바 컴파일러가 2개의 서로 다른 패키지 안의 같은 클래스를 찾은 경우 에러가 발생한다고 되어 있다.
해결 방법은 객체를 생성할 때 패키지명을 써서 경로를 표시해서 컴파일러가 알 수 있게 하라고 되어있다.
java.lang.reflect.InvocationTargetException
Normally "java.lang.reflect.InvocationTargetException" occurs when java compiler finds
2 different classes with same name in 2 different packages.
when u r importing both classes at a time and when you r trying to create object of that class
it throws "java.lang.reflect.InvocationTargetException" exception .
The solution is that when you are creating the object of the class use package name
also along with class name so that compiler knows what class it has to use.
- answer by google -
해석을 하면 InvocationTargetException이 발생한 이유가
자바 컴파일러가 2개의 서로 다른 패키지 안의 같은 클래스를 찾은 경우 에러가 발생한다고 되어 있다.
해결 방법은 객체를 생성할 때 패키지명을 써서 경로를 표시해서 컴파일러가 알 수 있게 하라고 되어있다.
반응형
'Android > Error' 카테고리의 다른 글
Comments