If you have this listener:

    <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on"/>

on your server.xml, remove it and try. You can not use a keystore if you are using the APR connector


참고 : http://stackoverflow.com/questions/18819180/tomcat-7-0-43-info-error-parsing-http-request-header

A SQLiteConnection object for database '+data+data+com_chat+databases+chat_db' was leaked!  Please fix yaour application to end transactions in progress properly and to close the database when it is no longer needed.


그냥 소켓이랑 충돌 난듯 ..

http://stackoverflow.com/questions/29991116/serversocket-accept-doesnt-works-in-second-time



http://prashantandroid.blogspot.in/2013/07/android-client-connected-with-socket.html


http://stackoverflow.com/questions/4489232/java-server-socket-stuck-on-accept-call-android-client-java-server



http://warmz.tistory.com/entry/%EC%86%8C%EC%BC%93-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-TCPIP-nm-%EC%B1%84%ED%8C%85


수신

http://www.androidside.com/bbs/board.php?bo_table=B56&wr_id=24085&sca=&sfl=wr_subject%7C%7Cwr_content&stx=%EC%B1%84%ED%8C%85&spt=-119&page=0


이미지 전송


http://javaexpert.tistory.com/420

emulator: ERROR: x86 emulation currently requires hardware acceleration!

Please ensure Intel HAXM is properly installed and usable.

CPU acceleration status: HAX kernel module is not installed!

해결방법

{ANDROID_SDK_HOME}\extras\intel\Hardware_Accelerated_Execution_Manager\intelhaxm-android.exe 를 관리자 권한으로 실행


sdk 설치 잘했나 확인


window - SDK Manager

Extras  - Intel x86 Emulator Accelerator (HAXM installer)


출저 : http://www.androidside.com/plugin/mobile/board.php?bo_table=B56&wr_id=28236


출저 : http://www.byteslounge.com/tutorials/how-to-connect-to-an-android-server-socket-in-the-emulator

[OPEN] Grid - set column header - korean broken / koean skew. 


sencha please checking !

내가 법이다 7

저자
전현 지음
출판사
영상노트 | 2012-02-22 출간
카테고리
소설
책소개
뭐? 법대로 하자고? 웃기지 마라. 내가 법이다. 그리고 우리가...




연애 이야기

안드로이드 키보드


InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);

EditText sendMsg = (EditText) findViewId(R.id.edit);

없애기
private void hideKeyboard(){
imm.hideSoftInputFromWindow(sendMsg.getWindowToken(), 0);
}
보이기
private void showKeyboard(){
imm.showSoftInput(sendMsg, 0);
}



Basically the question is how to get from this:

id    string
1          A
1          B
2          C

to this:

id    string
1          A B
2          C


출저 : http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat


참고 : http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html#function_group-concat


SELECT id, GROUP_CONCAT(string SEPARATOR ' ') FROM table GROUP BY id;


+ Recent posts