读书人

在SD卡中写下文件

发布时间: 2012-07-02 17:46:22 作者: rapoo

在SD卡中写入文件

// create a File object for the parent directory

File fileDirectory = new File(Environment.getExternalStorageDirectory()+"/filexxxx");?

?

// have the object build the directory structure, if needed.

fileDirectory.mkdirs();

?

File file = new File(?fileDirectory.getAbsolutePath(),filename );

?

FileOutputStream fos = new FileOutputStream(file);

读书人网 >移动开发

热点推荐