FileOutputStream 썸네일형 리스트형 안드로이드 - 파일카피 예제 package com.copytest; import java.io.FileInputStream; import java.io.FileOutputStream; public class FileCopy { 안드로이드 - 파일카피 예제 public static String read( String source ) throws Exception { FileInputStream input = new FileInputStream( source ) ; long size = input.available( ) ; byte buff[ ] = new byte[ (int)size ] ; input.read( buff ) ; input.close( ) ; return( new String( buff ) ) ; } public sta.. 더보기 이전 1 다음