Android中实现保存和读取文本文件到内部存储器(实现简易的记事本为例)

生活中,最使人疲惫的往往不是道路的遥远,而是心中的郁闷;最使人痛苦的往往不是生活的不幸,而是希望的破灭;最使人颓废的往往不是前途的坎坷,而是自信的丧失;最使人绝望的往往不是挫折的打击,而是心灵的死亡。所以我们要有自己的梦想,让梦想的星光指引着我们走出落漠,走出惆怅,带着我们走进自己的理想。

导读:本篇文章讲解 Android中实现保存和读取文本文件到内部存储器(实现简易的记事本为例),希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

场景

在Android应用中需要将某些文本内容保存到存储器中的txt文件中。

在显示时还需要将txt文件的内容读取加载出来。形成一个简单记事本的效果

 

Android中实现保存和读取文本文件到内部存储器(实现简易的记事本为例)

注:

博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

首先新建一个Activity并设计页面布局如上,xml布局代码为

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".StoreTextActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:gravity="center_horizontal"
        android:textSize="18sp"
        android:textColor="@android:color/black"
        android:text="记事本"
        />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#FFC8C8C8"/>
    <EditText
        android:id="@+id/edit_text"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:gravity="start"
        android:hint="请输入文本"
        android:inputType="textMultiLine"
        />

    <Button
        android:id="@+id/btn_save"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="saveFile"
        android:text="保存"
        />
</LinearLayout>

然后在Activity,在保存按钮的点击事件执行的保存到文件的方法中,将editText的文本内容保存到文件

    /***
     * 保存到文件
     * @param str
     */
    public void saveFile(String str)
    {
        FileOutputStream fos = null;
        BufferedWriter writer = null;

        try {
            fos = openFileOutput("badao.txt", Context.MODE_PRIVATE);
            writer = new BufferedWriter(new OutputStreamWriter(fos));
            try {
                writer.write(str);
                Toast.makeText(this,"保存成功",Toast.LENGTH_LONG).show();
            } catch (IOException e) {
                e.printStackTrace();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }finally {
            if(writer!=null)
            {
                try {
                    writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fos!=null){
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

保存成功后,文件会在内部存储下data/data/包名/files下找到

 

Android中实现保存和读取文本文件到内部存储器(实现简易的记事本为例)

然后在onCreate方法中,首先执行从txt加载内容的方法

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_store_text);
        editText = findViewById(R.id.edit_text);
        String str = load();
        if(!(TextUtils.isEmpty(str)))
        {
            editText.setText(str);
            Toast.makeText(this,"加载成功",Toast.LENGTH_LONG).show();
        }
    }

在加载内容的方法load中

    /***
     * 从文件中加载
     * @return
     */
    public String load()
    {
        FileInputStream fis = null;
        BufferedReader reader = null;
        StringBuilder content = new StringBuilder();
        try {
            fis = openFileInput("badao.txt");
            reader = new BufferedReader(new InputStreamReader(fis));
            String str;

            while ((str=reader.readLine())!=null) {
                content.append(str);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if(reader!=null)
            {
                try {
                    reader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fis!=null)
            {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return content.toString();
    }

activity的完整代码

package com.badao.androidstudy;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Context;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;

public class StoreTextActivity extends AppCompatActivity {

    private EditText editText;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_store_text);
        editText = findViewById(R.id.edit_text);
        String str = load();
        if(!(TextUtils.isEmpty(str)))
        {
            editText.setText(str);
            Toast.makeText(this,"加载成功",Toast.LENGTH_LONG).show();
        }
    }


    public void saveFile(View view)
    {
        saveFile(editText.getText().toString());
    }


    /***
     * 从文件中加载
     * @return
     */
    public String load()
    {
        FileInputStream fis = null;
        BufferedReader reader = null;
        StringBuilder content = new StringBuilder();
        try {
            fis = openFileInput("badao.txt");
            reader = new BufferedReader(new InputStreamReader(fis));
            String str;

            while ((str=reader.readLine())!=null) {
                content.append(str);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            if(reader!=null)
            {
                try {
                    reader.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fis!=null)
            {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return content.toString();
    }

    /***
     * 保存到文件
     * @param str
     */
    public void saveFile(String str)
    {
        FileOutputStream fos = null;
        BufferedWriter writer = null;

        try {
            fos = openFileOutput("badao.txt", Context.MODE_PRIVATE);
            writer = new BufferedWriter(new OutputStreamWriter(fos));
            try {
                writer.write(str);
                Toast.makeText(this,"保存成功",Toast.LENGTH_LONG).show();
            } catch (IOException e) {
                e.printStackTrace();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }finally {
            if(writer!=null)
            {
                try {
                    writer.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if(fos!=null){
                try {
                    fos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

运行之后,输入一些文本内容,点击保存

 

Android中实现保存和读取文本文件到内部存储器(实现简易的记事本为例)

然后退出app重新启动后

 

Android中实现保存和读取文本文件到内部存储器(实现简易的记事本为例)

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/136470.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!