본문 바로가기

개발/Web || Mobile23

Aquery 만쉐! 이번에 앱을 개발하게 되면서 정말 아무것도 모르는 상태로 개발을 하다보니 이건 무슨 학교다닐때 만든 게임보다 못하다는 느낌이 팍! -_-;; 그래서 소스 리펙토링을 시도... 여기저기 검색하던중 어느분이 Aquery 편한데 왜 안쓰는지 모르겠다고 적어놓은 글을 확인 그동안 아주 기초적인 사진을 가져온다던지, 데이터를 가져오는것 한개 하는데도 내가 안드로이드를 잘 몰라서 그런지 정말 힘들었다. httpClient 만들어서 세션 유지 하는것도 힘들고... 근데 Aquery는 대박 걍 선언하고 진짜 JQuery 쓰듯이 쓴다. 특히나 좋은점은 각 객체 접근해서 값 바꾸거나 할때 .. 대박... 일단 사진 ImageView img = (ImageView)this.findViewById( R.id.img ); aq.. 2017. 8. 30.
ByteArrayInputStream 로 받아서 가공할때 /* int ch; while((ch=baFile.read()) != -1 ){ // 9 tab : 13 enter if(ch == 9 ){ System.out.println( "*" ); } System.out.print( "read : ["+ ch + " : " + (char)ch + "]"); }*/ 9 == 탭 13 == 엔터 2009. 6. 9.
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.
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.