티스토리 뷰
반응형
안녕하세요 오늘의 포스팅 주제는 encode 과 decode인데요
저의 경우는 webview 를 사용하는데 javascript로 location.href 로 데이터를 넘겨 받아야
하는 상황이 있었는데요. 한글의 경우 글씨가 깨지는 경우가 생기더라구요.
그래서 여러가지 방법을 찾아보다가 몇개 방법을 알아냈어요
일단 간단한 방법도 있고 조금 돌아가는 느낌의 방법도 2 가지가 있으니 한번봐주세요
첫번째 방법
else if (url.contains("txt_")) {
url = URLDecoder.decode(url.substring(APP_SCHEME.length()), "EUC-KR");
String[] a = null;
a = url.split("txt_");
코드를 보시면 알겠지만 Shouldoverride 에서 url을 넘겨 받을때 앞에txt_를 split해서 뒤에 값만 받구요 그리고 난 이후에 보시면 안깨지고 받을 수 있는 방법이 있고
하가지 방법이 더 있는건
// Sending side
byte[] data = text.getBytes("UTF-8");
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, "UTF-8");
Or with StandardCharsets
:
// Sending side
byte[] data = text.getBytes(StandardCharsets.UTF_8);
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, StandardCharsets.UTF_8);
String Result = URLDecoder.decode(url.substring(APP_SCHEME.length()), "EUC-KR");
요렇게 다시 마지막 처리를 해줘서 받는 방법 이 있겠습니다
아참 그리고
javascript 에서는 \n를 따로 해주세요~그럼 이만요~~~~
반응형
'android' 카테고리의 다른 글
[android] Use JsonReader.setLenient(true) to accept malformed JSON (1) | 2018.04.06 |
---|---|
[android] 8.0 OREO Notification 알림 대응하기 (2) | 2018.03.20 |
[android] Notification 알림 제거 하지 않기 (0) | 2018.01.30 |
[Kotlin] Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull, parameter intent (1) | 2017.12.15 |
[android] hybride web에서 webview 자동로그인 (0) | 2017.11.13 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Swift app version check
- Sandbox account logout
- Swift version code
- Swift check notch
- Bundle main infodictionary swift 4
- How to get version swift
- iPhone X safe area size
- android notification
- 맛집
- 샤브샤브
- Sandbox account sign out
- Swift button text underline
- SceneDelegate error
- Sandbox test login on
- swift autoclosure
- swift actor
- Swift 앱 버전
- Swift 노치 구분
- autoclosure
- 위메프
- firebase remote config
- Swift textField max length
- 쇼미더머니6
- Android
- [WindowScene] Failed to Error
- wwdc21 actor
- Swift button underline programmatically
- Swift label underline storyboard
- swift uitextfield 글자수 제한
- [WindowScene] Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함