首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

在SD卡中写下文件

2012-07-02 
在SD卡中写入文件// create a File object for the parent directoryFile fileDirectory new File(Envir

在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);

热点排行