2011-09-30 2 views

답변

2

project은 google 인증을,이 tutorial은 캘린더를 나타냅니다.

+0

지금 구글 캘린더는 내 애플 리케이션에 노력하고 있습니다 .... 대단히 감사합니다 링크 lication .. Thanks –

+0

Google 응용 프로그램에서 Google 캘린더를 구현할 수있는 방법이 있습니까? GDATA 또는 다른 JAR 파일을 사용하는 것입니다 ... –

+1

http://code.google.com/apis/calendar/ –

1
HttpClient httpclient = new DefaultHttpClient(); 
HttpPost httppost = new HttpPost("<URL HERE>"); 

try { 

    List<NameValuePair> parameters = new ArrayList<NameValuePair>(2); 
    parameters.add(<name_value_pair>); 
    parameters.add(<name_value_pair>); 
    httppost.setEntity(new UrlEncodedFormEntity(parameters)); 


    HttpResponse response = httpclient.execute(httppost); 

    StatusLine returned_status = response.getStatusLine(); 
    int status_code = returned_status.getStatusCode(); 


} catch (ClientProtocolException e) { 
    // TODO Auto-generated catch block 
} catch (IOException e) { 
    // TODO Auto-generated catch block 
} 
관련 문제