This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################################################# | |
| ## | |
| ## 2004-01-09 새로운 구조로 최초 작성 | |
| ## 01-29 템플릿 구성 시작 | |
| ## 10-05 NOTEPAD 샘플 작성 | |
| ## | |
| ## NSIS 예제 파일 작성 : hardkoder@gmail.com ( www.kipple.pe.kr ) | |
| ## | |
| ############################################################################################################# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################################################# | |
| ## | |
| ## 2004-01-09 새로운 구조로 최초 작성 | |
| ## 01-29 템플릿 구성 시작 | |
| ## 10-05 NOTEPAD 샘플 작성 | |
| ## | |
| ## NSIS 예제 파일 작성 : hardkoder@gmail.com ( www.kipple.pe.kr ) | |
| ## | |
| ############################################################################################################# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.telegram.example.SendMessage; | |
| import org.apache.http.NameValuePair; | |
| import org.apache.http.client.entity.UrlEncodedFormEntity; | |
| import org.apache.http.client.methods.HttpPost; | |
| import org.apache.http.message.BasicNameValuePair; | |
| import org.json.JSONArray; | |
| import org.json.JSONObject; | |
| import java.io.IOException; |