问题描述
- openFileOutput无法创建文件
-
在小米4和魅族pro5上都试过,还是看不到创建的文件String FILENAME = "hello_file"; String string = "hello world!"; try{ FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); try{ fos.write(string.getBytes()); fos.flush(); fos.close(); } catch (IOException e) { Log.e("TextActivity:", "IOException"); e.printStackTrace(); } } catch (FileNotFoundException e) { Log.e("TextActivity:", "FileNotFound"); e.printStackTrace(); }
求助!!!
解决方案
你这直接给个文件名,连路径都没,当然不行
解决方案二:
http://www.cppblog.com/guojingjia2006/archive/2012/02/08/165149.aspx
时间: 2025-01-21 08:55:34