xml파일을 byte 또는 String으로 가져올 때 정리해보았다. "file:///android_asset/filename.jpg" 등으로는 이제 불러올 수 없다. java.io.FileNotFoundException 발생 사용할 때 String 또는 byte일 경우 서로 변환해서 쓰면 되겠지 했지만 원하는 결과를 얻을 수 없었다. UTF-8, EUC-KR등의 캐릭터셋을 적용해도 동일 했다. // byte로 가져올 때 1 2 3 4 5 6 7 8 9 10 11 try { InputStream is = getAssets().open("applSample.xml"); int size = is.available(); byte[] signXml = new byte[size]; is.read(signXml); ..
Webview에서 이미지 파일 다운로드 하기. 123456789101112131415161718192021222324252627class WebClient extends WebViewClient { public boolean shouldOverrideUrlLoading(WebView view, String url) { Log.e("url ", url); if(url.toLowerCase().endsWith(".jpg") || url.toLowerCase().endsWith(".png")) { Request request = new Request(Uri.parse(url)); request.allowScanningByMediaScanner(); request.setNotificationVisibility(..
사용 목적 : 특정 확장자를 다른 앱에서 실행 시킬 때 필요.사용 기회 : 안드로이드는 폴더를 탐색기를 통해 공유할 수 있지만 iOS의 경우 그렇지 못하니 별도의 설정이 필요하다. 하지만 이점을 iOS에서 제공해준다는점~~~ 기능이 있다는걸 알았지만 처음 써보게 되었다. //.h @property (nonatomic, strong) UIDocumentInteractionController *documentInteractionController; //.m//파일 실행을 위한 준비작업.//서버에 있는 경로를 바로 연결시켜주면 "한컴뷰어"의 경우 파일이 열리지 않아 별도로 해당 앱의 도큐먼트에 저장한 후 파일경로를 넘겨줄 경우 한글뷰어에서 해당 파일을 볼 수 있다.NSData *tempData = [NSDat..