利用文件io流的方式存储(存到内部与存到SD卡)

本文介绍了如何在Android中进行文件操作,包括将数据保存到内部存储和SD卡,以及从这两个位置读取文件。详细步骤包括使用FileOutputStream和FileInputStream进行写入和读取,并提到了在SD卡读写时需要的权限。
摘要由CSDN通过智能技术生成

一、存到内部

  • 保存到内部
    FileOutputStream fos= openFileOutput(file_name, Context.MODE_PRIVATE);
    // 当内容需要追加的时候MODE_APPEND
    fos.write(file_content.getBytes(“utf-8”)); // 转换成utf-8字节编码
  • 从内部读取文件
    FileInputStream fis = openFileInput(file_name);
    BufferedReader br = new BufferedReader(new InputStreamReader(fis));
    String msg = “”;
    StringBuffer stringBuffer = new StringBuffer();
    while ((msg = br.readLine()) != null) {
    stringBuffer.append(msg);
    }
    二、保存数据到sd卡
    // 判断sdcard卡是否可用
    if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
    String file_name = et_filename.getText().toString().trim();
    String file_content = et_filecontent.getText().toString().trim();
    //sd卡的路径
    String path = Environment.getExternalStorageDirectory().getAbsolutePath();
    try {
    FileOutputStream fos = new FileOutputStream(path

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值