반응형

Platform 173

[EUC-KR][UTF-8] 인코딩

https://reakwon.tistory.com/76 [자바/JAVA] 문자열 다루기 2 String getBytes 인코딩, 디코딩 String을 왜 인코딩하고 디코딩할까요? 인코딩과 디코딩을 해야하는 상황이 있습니다. 만일 DB가 한글을 지원하지 않는 경우 한글로 된 문자를 숫자로 encoding해서 DB에 저장하면 되고, 사용자에게 � reakwon.tistory.com https://hamait.tistory.com/355 웹(스프링) 초보의 좌충우돌 한글 인코딩 (euc-kr 에서 UTF-8) 삽질기 하루하루 삽질은 이어지는 와중에, 오늘도 재밌는 삽질을 했기에 공유해봅니다. 덕분에 문자변환관련 글도 다시 정독해 보게 되었습니다. * 삽질이 없으면 발전도 없다! 상황은 이렇습니다. 1. �� ..

Platform/Etc 2020.08.14

[Asset] asset에서 읽은 이미지 base64 인코딩 된 이미지로

asset에서 읽은 이미지 base64 인코딩 된 이미지로 private HashMap createInstallManagerInfo() throws Exception { HashMap installHashMap = new HashMap(); //asset에서 읽은 이미지 -> bas64 인코딩된 이미지로 AssetManager assetManager = getResources().getAssets(); InputStream is = null; is = assetManager.open("seal.jpg"); byte[] buf = new byte[1024]; int bytesRead; ByteArrayOutputStream output = new ByteArrayOutputStream(); while ((..

Platform/Android 2020.08.06

[INTENT] URL 로 Activity 호출

나의 경우에는 하위 모듈에서 app 상의 activity를 호출할 때 사용하였다. https://gun0912.tistory.com/13 [안드로이드/Android]URL로 액티비티 실행하는 방법(Custom URL Scheme) 우리는 보통 Activity를 실행시킬때 아래와 같이 코드를 작성합니다. Intent intent = new Intent(this,AAA.class); startActivity(intent); 만약 URL을 실행하고싶은 경우, 아래와 같이 해당 URL을 적어주고 ACT.. gun0912.tistory.com

Platform/Android 2020.07.23
반응형