목록안드로이드/File (19)
설.현.아빠
http://jeehun.egloos.com/3987468
File path = new File("/sdcard/imsi"); if(! path.isDirectory()) { path.mkdirs(); }
아...좋은 포스트를 찾았다^^ IO 속도 테스트를 해보신 분이 포스트를 해두셨네^^ 간단하게Copy하는 코드를 만들어서Stream종류별 코딩방법 별 속도차이를 느껴보고자 한다. 차이가 날 거라 예상은 하지만 실제로 얼마나 차이가 나는지 확인해 보고자 한다. 예제로 700Mb 영화파일을 복사 해서 각 코드별 시간차이를 테스트 할 것이다. http://blog.naver.com/albertx/100086413321
그냥 함 해봤다...역시 한방에 안되더군...ㅋㅋㅋ 여러가지 문제들을 겪으면서 드뎌 완성해보았다..(아직 몇가지 문제점들이 남아있지만..) private void DownloadImage() { String src = "http://cfs.tistory.com/custom/blog/70/705378/skin/images/image.png"; String des = "sdcard/imsi/image.png"; File directory = new File("/sdcard/imsi"); if(!directory.isDirectory()) { directory.mkdirs(); } // 두번째 문제가 발생한곳. 처음엔 sdcard/folder/image.png 로 넣었더니 안되더군.. // 그리하여 폴더를 생..
/** * By cozyhill */ import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; public class DownLoadURL { public String url; public String path; public DownLoadURL(String url, String path){ this.url = url; t..
url에서 파일 다운로드가 되질 않습니다. 인터넷에서 파일다운로드를 테스트 하는데 작동하지않네요. 퍼미션(인터넷,외장카드)주었구요. 뭐가 잘못된건지좀 알려주세요 ㅠ http://www.androidside.com/B49/7562
silent한 installer 구현하다가 사용한 소스입니다. 용량이 큰 파일은 InputStream이 바로 닫히지 않으므로 중간에 progress나 wait상태 처리해주셔야합니다. 좋은 개발 되시길 바랍니다~ String src="http://192.168.1.106/football.3gp"; String des="sdcard/temp1357.3gp"; InputStream in = null; OutputStream out = null; try{ in = new BufferedInputStream( new URL(src).openStream()); out = new BufferedOutputStream(new FileOutputStream(des)); int read; while(true){ read ..