fileutils

Android fileutils cannot be resolved

android 코딩할때 에서 fileutils cannot be resolved 에러가 나오는 경우 이클립스를 사용하는 경우일 것이다. 아래 링크에서 “commons-io-2.4-bin.zip” 파일을 다운로드하여 압축을 해제한 후 http://commons.apache.org/proper/commons-io/download_io.cgi 이클립스에서 프로젝트에 우클릭 Properties—> Java Build Path —> Libraries tab —> Add External Jars commons-io-2.4.jar 파일을 추가하면 된다. 그리고나서 java 파일 상단에 import 추가하면 된다. import org.apache.commons.io.FileUtils;    

Scroll to top