전체 글233 가슴이 시리다. 그냥... 왠지... 나도 모르게... 사진의 깊고 검은 바다에 쑤욱 들어가고프다. 갑자기 한겨울밤의 바다가 보고싶다. 앞이 막막할정도로 까만... 철썩철썩 파도소리가 없다면 코앞에 바다인지도 모를법한 .. 그런바다. 2008. 1. 24. Android에서의 TCP/IP 통신 안드로이드 에뮬레이터와 데스크탑 서버간 TCP/IP통신을 하는 간단한 코드이다. 보통 이런 테스트는 loopback을 이용하면 되지 않을까? 라고 착각하는 사람들이 굉장히 많을 것이다. 그래서 서버의 주소를 getLocalHost()를 통해 가져오게 되면 완전 삽질이다. 왜냐? 안드로이드 에뮬레이터의 localhost는 안드로이드 에뮬레이터의 네트웍이지 데스크탑의 네트웍이 아니기 때문이다. 따라서 아래의 소스코드는 일단 네트웍이 돌아가는 컴퓨터에서만 작동이 가능하다. - Android Client의 메인부분 package android.SocketTest; import android.app.Activity; import android.os.Bundle; public class SocketTest exte.. 2008. 1. 20. Syntax Highlighter~! So Cool~! 사용법은 : http://gyuha.tistory.com/193 에서 참고함 package android.SocketTest; import android.app.Activity; import android.os.Bundle; public class SocketTest extends Activity { @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); Thread cThread = new Thread(new TCPClient()); cThread.start(); } } 2008. 1. 19. [펌]C에서 쓰이는 문자열 관련 함수 Written by LHC ( s1662543@kiscos.sarang.net) - 스트링 관련 함수 v1.2- 1. 종류 int strcasecmp(const char *s1, const char *s2); char *strcat(char *dest, const char *src); char *strchr(const char *s, int c); int strcmp(const char *s1, const char *s2); int strcoll(const char *s1, const char *s2); char *strcpy(char *dest, const char *src); size_t strcspn(const char *s, const char *reject); char *strdup(const .. 2008. 1. 14. 이전 1 ··· 35 36 37 38 39 40 41 ··· 59 다음