안녕하세요

프로그램 과정에서 막혔던 문제들에 대한 해결책 정리


페이지 목록

2010년 11월 24일 수요일

안드로이드 라이브러리 추가 (add android library)

  1. project 폴더에 lib 폴더를 추가해 주고 그 곳에 외부 jar library를 복사해 넣는다.
  2. 그 후 f5를 누르면 추가한 lib 폴더와 외부 jar library가 보일 것이다.
  3. e-clipse의 프로젝트 이름에서 오른쪽 마우스 버튼 클릭 후 properties 를 클릭한다.
  4. properties 창 중 Java Build Path를 클릭한다.
  5. 여러 가지 Tab들 중 Library Tab을 클릭하고 Add Jars를 클릭한다.
  6. lib 폴더에 추가한 외부 jar 파일을 찾아서 선택해준다.
  7. 해당 프로젝트에 referenced library라는 새로운 폴더가 생긴 것이 보일 것이다.
  8. Mission complete
TIP) 다시 Properties -> Java Build Path -> Library tab을 가보면 해당 library가 add 된 것을 볼 수 있다.

도움 준 사이트
http://appleandroidjunhulove.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8%EC%97%90-%EC%99%B8%EB%B6%80-%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%ACJar-%EC%B6%94%EA%B0%80%ED%95%98%EA%B8%B0

2010년 11월 18일 목요일

안드로이드 AVD 에러 처리

Android가 한글 폴더 명을 지원하지 않아서 사용자 PC 이름이

한글로 되어 있으면 AVD가 경로를 찾지 못해서 발생하는 에러이다.

다음은 이글루스 홈페이지에서 발견한 정보
1. android-sdk-windows 폴더로 이동. 해당 폴더의 tools로 이동. (cd tools)

2. 명령어 android move avd -n 에뮬레이터이름 -p 해당경로

예: android move avd -n hiq -p c:\dev\avd1

Tip) 경로는 "반드시" C:\여야만 한다. D:\ 와 E:\로 경로를 지정해서 실패한 경험이 있음

http://hiiq.egloos.com/85086

2010년 11월 14일 일요일

HTML vs HTTP

I didn't know the difference between HTML and HTTP.

It's always curious that what is the difference. Thanks for Head First JSP & Servlet.

I fount the difference. I'm so glad to introduce it here.

HTTP is the protocol which is used to communicate between server and client.

It is operated llike client "request" and server "response"

So, when client want to see webpage - client send the request message(HTTP)

and then server response it and if the request is accepted, server send the response message(HTTP).

And then What is the HTML ??

HTML is the language which web browser understand.

So, when client request some webpage. Client send HTTP request message of the webpage.

Then server response the HTTP request message.

In the HTTP response body, HTML is included. So, the client get the HTTP message with HTML body.

The web browser read the HTTP and HTML.

And browser change the HTML message to UI. So, we can see the webpage!!

So the difference is that HTTP is protocol which communicate between server and client.

HTML is the language which web browser can understand and read the language, web browser will translate the HTML message to UI.

Sorry about my bad english. haha :) Maybe you don't understand it because of my bad english.

Please reply this message if you don't understand. :) I'm practicing English and studying IT field. :D