博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 写文件到手机
阅读量:6446 次
发布时间:2019-06-23

本文共 1837 字,大约阅读时间需要 6 分钟。

1)// 在手机中创建文件

FileOutputStream phone_outStream =this.openFileOutput("1.txt", Context.MODE_PRIVATE);
phone_outStream.write("HELLO".getBytes());

 

FileOutputStream phone_outStream1 =openFileOutput("1.txt", Context.MODE_APPEND); //追加模式继续写

phone_outStream1.write(" world".getBytes());

//读取并显示

byte[] s= new byte[80];

FileInputStream phone_inputStream =openFileInput("1.txt");
phone_inputStream.read(s);    
Toast.makeText(this, new String(s), Toast.LENGTH_SHORT).show();

结论:不管手机data文件夹是否能在DDMS中看到东西, (没有root权限就会空空如也.)程序能够正常运行,并toast出正确内容.

2)如果试图用该方法来写入到手机内部存储中,是不行的:

java.io.FileNotFoundException: /2.txt: open failed: EROFS (Read-only file system)

File f = new File("2.txt");

FileOutputStream fs = new FileOutputStream( f ); //这句导致异常

openFileOutput();是android的api, android.content.ContextWrapper.openFileOutput();

FileOutputStream .是Java的类.  java.io.FileOutputStream

 

此文转自:http://www.cnblogs.com/sinawear/archive/2012/11/26.html

 

 

==============================================

public static void writeStringAsFile(final String fileContents, String fileName) {

        Context context = App.instance.getApplicationContext();
        try {
            FileWriter out = new FileWriter(new File(context.getFilesDir(), fileName));
            out.write(fileContents);
            out.close();
        } catch (IOException e) {
            Logger.logError(TAG, e);
        }
    }
    public static String readFileAsString(String fileName) {
        Context context = App.instance.getApplicationContext();
        StringBuilder stringBuilder = new StringBuilder();
        String line;
        BufferedReader in = null;
        try {
            in = new BufferedReader(new FileReader(new File(context.getFilesDir(), fileName)));
            while ((line = in.readLine()) != null) stringBuilder.append(line);
        } catch (FileNotFoundException e) {
            Logger.logError(TAG, e);
        } catch (IOException e) {
            Logger.logError(TAG, e);
        }
        return stringBuilder.toString();
    }

转载于:https://www.cnblogs.com/ansonz/p/3503765.html

你可能感兴趣的文章
无缝滚动实现原理分析【公告栏】
查看>>
Java Web 高性能开发
查看>>
redis-cli 命令总结
查看>>
CentOS 4.4双网卡绑定,实现负载均衡
查看>>
GitHub页面使用方法
查看>>
Python爬虫综述(笔记)
查看>>
Scala之柯里化和隐式转换
查看>>
wmic命令
查看>>
Merge and BottomUpSort
查看>>
reids 安装记录
查看>>
获取androdmanifest里面的meta-data
查看>>
Centos 6.3编译安装nagios
查看>>
如何实现7*24小时灵活发布?阿里技术团队这么做
查看>>
iSCSI
查看>>
java1234_Activiti_第6讲_一般程序员使用的函数
查看>>
mysql拷贝表的几种方式
查看>>
NetApp FAS2240-4存储删除文件数据恢复
查看>>
Qt设置美观按钮
查看>>
技术人在学习爱的路上
查看>>
openvswitch安装(centos6.5)
查看>>