본문 바로가기

IT TMI/개발 IT

(32)
[개발 IT] 아이콘 모음 URL 아이콘 무료 다운 http://www.iconfinder.com 3,875,000+ free and premium vector icons. SVG, PNG, AI, CSH and PNG format. Iconfinder is the leading search engine and market place for vector icons in SVG, PNG, CSH and AI format. www.iconfinder.com
[개발 IT] VS2008설정 초기화 명령창에 아래 명령을 입력 후 실행 devenv.exe /resetuserdata
[개발 IT] 열린 TCP/UDP 포트 확인 cmd에서 netstat -an
[개발 IT] ANT 특정파일 Build Apache에서 제공하는 ant로 전체 빌드시 오류가 발생할 경우 파일 하나만 빌드 ant one -Df=파일명.java 예시 ant one -Df=aaaa.java
[개발 IT] The specified Tomcat installation directory does not exist 에러 해결방법 Server 경로설정 문제 Tomcat installation diretory 재설정 필요 STEP 1. Window -> Preperfences -> Server -> Runtime Environments 에서 edit으로 재설정 STEP 2. Browse를 클릭하고 tomcat이 설치된 위치를 선택 STEP 3. Servers탭에서 기존에 존재하던 서버를 삭제하고 새로 생성
[개발 IT] jdk-8u5-windows-i586.exe - 시작 지점 없음 오류 프로시저 시작 지점 RegDeleteKeyExA을(를) DLL ADVAPI32.dll에서 찾을 수 없습니다. Windows XP 환경에서는 Java SE 8버전이 설치되지 않는다. 따라서 Java SE 7버전 이하로 설치해야 한다.
[개발 IT] JVM 메모리 구조 메서드 영역 (Method Area) 클래스 데이터, 클래스변수(static변수) 호출 스택 (Call Stack) Main메서드, 지역변수 힙 (Heap) 인스턴스, 인스턴스 변수(static을 제외한 다른 변수)
[개발 IT] Invalid project description - overlaps the location of another project 프로젝트 Import 할때 발생되는 에러 문제 workspace가 아닌 곳에서 import 후에 파일을 workspace로 옮겨 import 할 경우 발생한다. (기존에 import한 위치가 아닌 변경된 위치에서 import할 경우 발생) Invalid project description - overlaps the location of another project 해결방법 방법1. File -> project -> Import -> General -> Existing Projects into Wokspace 방법2.(안드로이드 프로젝트 일경우) File -> project -> Import -> General -> Existing Existing Android Code into Wokspace 위 방법으..