[자바] InputStream을 String으로 변환하기 private static String convertStreamToString(InputStream is) { BufferedReader reader = new BufferedReader(new InputStreamReader(is)); StringBuilder sb = new StringBuilder(); String line = null; try { while ((line = reader.readLine()) != null) { sb.append(line + "\n"); } } catch (IOException e) { e.printStackTrace(); } finally { try { is.close(); } catch (IOExceptio..
[자바] String을 URL 인코딩하기 URL 뒤에 데이터를 덧붙이고자 할때 스트링을 URL에 맞게 인코딩을 해야하는데 아래와 같이 하면 된다. String encodeResult = URLEncoder.encode(String encodingString, String charsetName); 그냥 URLEncoder.encode(String s); 는 deprecated 되었으니까 사용하지 말고 위의 함수를 사용하자. charsetName에는 "UTF-8"과 같은 캐릭터 인코딩 셋을 넣으면 된다. 반대로 디코딩하는 것은 아래와 같이 하면 된다. String decodeResult = URLDecoder.decode(String decodingString, String charsetName); 끝.
- Total
- Today
- Yesterday
- Python
- Android
- 강좌
- TIP
- 샷
- HTML5 튜토리얼
- mini project
- HTML5
- 서울
- java
- GX-10
- google app engine
- gae
- Writing
- gre
- 팁
- lecture
- 안드로이드
- 안드로이드 앱 개발 기초
- 사진
- c++
- 자바스크립트
- Javascript
- ny-school
- php
- 삼식이
- 뽐뿌
- 탐론 17-50
- 속깊은 자바스크립트 강좌
- K100D
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |