개발86 eclipse start 안될때 --launcher.XXMaxPermSize 512M -startup plugins\org.eclipse.equinox.launcher_1.0.101.R34x_v20081125.jar -showsplash org.eclipse.platform -vmargs -Dosgi.requiredJavaVersion=1.5 -Xms256m -Xmx512m -XX:PermSize=256m -XX:MaxPermSize=256m -XX:NewSize=128m -XX:MaxNewSize=128m ini 파일중에 주석처리부분 -- 이라든가 메모리 설정부분이 잘못된곳이 없는지 확인 2009. 2. 25. javaScript replaceAll //문자 바꾸기, 사용법 var str = 문자열.replaceAll("a", "1"); String.prototype.trim = function(){ return this.replace(/(^s*)|(s*$)/gi, ""); } String.prototype.replaceAll = function(str1, str2) { var temp_str = ""; if (this.trim() != "" && str1 != str2) { temp_str = this.trim(); while (temp_str.indexOf(str1) > -1){ temp_str = temp_str.replace(str1, str2); } } return temp_str; } 출처 : 어떤분 블로그인지 생각이 안나엽...;; 2009. 2. 19. eclipse ; 자동으로 찍기 설정 커서를 문장 끝으로 이동시켜서 세미콜론(;) 을 찍었는데 문장 아무곳에서나 세미콜론(;)을 눌러주면 자동으로 문장 끝에 찍어줍니다. 이 기능은 처음에 활성화가 되어있지 않으므로 활성화를 시켜줘야 합니다. 활성화 위치 Windows -> Preferenes -> Java -> Editor -> Typing 탭 - > Smart Semicolon Positioning 체크 박스 활성화 또는 Automatically insert at correct position Semicolons 체크 박스 활성화 출처 : http://www.okjsp.pe.kr/seq/119561 2009. 2. 4. update error occurred during initialization of VM error occurred during initialization of vm 이라는 에러는 보통 ini파일의 메모리 설정이 잘못되어있거나 --주석된 부분인식을 못하기 때문 인것같다.. 업데이트할때도 지가 최소메모리땜에 ini파일을 수정하는것 같은데 막 겹쳐써서 프로젝트 중간에 열어보면 이상하게 되어있을때가 있다. -showsplash org.eclipse.platform --launcher.XXMaxPermSize 512M 2009. 2. 2. 이전 1 ··· 6 7 8 9 10 11 12 ··· 22 다음