본문 바로가기

개발/에러해결&팁8

[Eclipse] The import java.sql cannot be resolved ERROR Multiple annotations found at this line The import java.sql cannot be resolved ... 해결 : 해당 Project 오른쪽 마우스 클릭 -> Preferences validation 검색 Validation 1. Enable project specific settings -> check 2. Validator XML Schema Validator -> Manual check, Build check XML Validator -> Manual check, Build check 2016. 1. 21.
안드로이드 스튜디오 Error:Execution failed for task ':app:dexDebug'. 프로젝트 세팅 중복했을 때 오류 발생 'build.gradle' or 'imi' 확인 -> build.gradle(Module:app) 의 dependencies 의 중복 선언 확인 중복된 compile 삭제 후 오류 해결 2016. 1. 19.
안드로이드스튜디오 Error: Execution failed for task ':dexDebug'. / multiDexEnabled 안드로이드 스튜디오에서 Error: Execution failed for task ':dexDebug'. 에러가 떴을 때, Error:Execution failed for task ':dexDebug'. > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_75\bin\java.exe'' finished with non-zero exit value 2 원인 >> 프로젝트에서 라이브러리 중복 선언 중복 된부분 삭제하고 해결 -> 프로젝트 파일 합치는 과정에서 예전에 지웠던 파일이 다시 들어가서 오류 발생 ... 2015. 7. 2.
SimpleDateFormat Locale.KOREAN - 영어한글요일표현 SimpleDateFormat df = new SimpleDateFormat("yyyy년 MM월 dd일 E요일", Locale.KOREAN); 날짜 포맷 형식 지정 시 지역설정을 한국어로 해야 mon요일, tue요일 등 방지할 수 있음! 2015. 3. 30.
java.sql.SQLException: ORA-00911: 문자가 부적합합니다. ORA-00911: 문자가 부적합합니다 이런 SQLException 이 발생한 경우 , jsp 프로그램 코딩 중 sql 스트링에 세미콜론 ( ; ) 을 넣어 오류 발생. SQLGate 의 SQL 에디터 사용 중 ; 넣어 test를 했었는데, jsp의 string sql에 세미콜론을 빼주면서 오류 해결 !!! ** 문자가 부적합 하다는 오류가 발생했을 시, 문자 부호 한번더 체크하기 세미콜론(;) 외 콤마(,) 마침표(.) 등... 2015. 2. 17.
[websqiare w5] Failed to load the JNI shared library ~ jvm.dll. "Failed to load the JNI shared library ~ jvm.dll." websquare 혹은 eclipse에서 jvm.dll ** virtual machine 을 못 찾을 때 발생 같은 경로에 있는 .ini 파일 안에 vm (virtual machine) 경로를 설정 해주면 됨 websquare.ini 처음에 젤 하단에 -vm 경로를 설정해줌. 그래도 오류가 발생 위치를 -vmargs 상단으로 위치해주니 error 해결~ 경로는 java jre 위치로 설정해주면 되는데 64bit, 32bit 충돌로 인해 error가 발생할 수 도 있으니 bit 확인을 해주고, 32bit 에서 돌아가는 프로그램은 32bit로 마춰주면됨 경로 : 32bit 경우 , C:Program Files (x86.. 2015. 2. 9.