通过实例学安卓开发

  • 实例
  • 题目
  • 程序结果展示界面
  • 涉及到的知识点
  • 实现过程
  • 源码
  • 注意事项
  • 总结(一点牢骚)


大家如果是要跟着我文章来实践的话,还是从头看到尾,依据已经给出的截图及实现过程先自行完成,源码贴在最后,各有各的写法,只要能实现都是了不起的。加油吧,一起努力!

实例

题目

内部文件读写示例。

程序结果展示界面

android内存读写权限 android10读写外部储存_android


android内存读写权限 android10读写外部储存_android_02

涉及到的知识点

文件读写分为内部读写(internal storage)与外部读写(external storage)。

内部存储是将应用程序的数据以文件的方式保存至设备内存中,该文件为其创建的应用程序私有,其他应用程序无权进行操作,当该应用程序被卸载时,其内部存储文件也随之被删除。

外部读写通常是指对SD卡上文件的读写操作,需要在清单文件中配置在扩展存储设备里写文件的权限。

抽象类android.content.Context提供了两个抽象的方法openFileOutput()openFileInput(),其类型对应于标准I/O文件读写类型。

注意:

  1. 在Android应用开发中,还需要配合使用Java中的标准I/O文件读写方式来实现文件读写;
  2. openFileOutput(String,int)方法中的第一参数为要读取的文件名,第二参数为读取方式。

实现过程

  1. 新建名为FileDemo的应用工程
  2. 修改默认布局文件activity_main.xml,采用垂直线性布局,依次添加两个TextView控件、一个EditText控件和两个命令按钮。其中,两个命令按钮是水平线性布局。
  3. 编写程序MainActivity.java

源码

activity_main.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=".MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="文件存储示例"
        android:textSize="25sp"
        android:gravity="center_horizontal"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="(追加)输入您存储的信息"
        />
    <EditText
        android:id="@+id/text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="(追加)输入您存储的信息"
        android:textSize="22sp"/>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:orientation="horizontal">
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/save"
            android:text="保存信息" android:textSize="20dp"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/load"
            android:text="读取信息" android:textSize="20sp"/>
    </LinearLayout>
</LinearLayout>

MainActivity.java

package com.example.myapplication;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import androidx.appcompat.app.AppCompatActivity;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class MainActivity extends AppCompatActivity {

    private EditText text;
    private Button saveButton;
    private Button loadButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text = (EditText) this.findViewById(R.id.text);
        saveButton = (Button) this.findViewById(R.id.save);
        loadButton = (Button) this.findViewById(R.id.load);
        saveButton.setOnClickListener(new ButtonListener());
        loadButton.setOnClickListener(new ButtonListener());
    }

    private class ButtonListener implements View.OnClickListener {
        @Override
        public void onClick(View view) {
            switch (view.getId()){
                case R.id.save:
                    String saveInfo = text.getText().toString().trim();
                    FileOutputStream fos = null;
                    try {
                        fos = openFileOutput("text",MODE_APPEND);
                        fos.write(saveInfo.getBytes());
                    } catch (FileNotFoundException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }finally {
                        if (fos!=null){
                            try {
                                fos.close();
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                        }
                    }
                    Toast.makeText(MainActivity.this,"数据保存成功",Toast.LENGTH_LONG).show();
                    break;
                case R.id.load:
                    String get = "";
                    try {
                        //文件无扩展名且为应用程序私有
                        FileInputStream fis = openFileInput("text");
                        byte[] buffer = new byte[fis.available()];//available()返回一次可以读取到的数据长度
                        fis.read(buffer);
                        get = new String(buffer);
                    } catch (FileNotFoundException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                    Toast.makeText(MainActivity.this,"保存的数据是:"+get,Toast.LENGTH_LONG).show();
                    break;
                default:
                    break;
            }
        }
    }
}

注意事项

  1. 本方式的文件读写,并不需要在清单文件里注册任何权限;
  2. 文件text为应用程序私有,保存在手机(或模拟器)的/data/data/(你的包名)/files文件夹里。

总结(一点牢骚)

09和10这两篇文章使用Android Studio写的,然后我今天发现还是idea真香,原因有两点:

  1. Android Studio中模拟器没法输入中文,只能靠虚拟键盘/键盘输入英文,而要想输入中文,只能在模拟器里头去想办法下载中文输入法,多麻烦,我是一个很怕麻烦的人;
  2. 截图说明时还是idea中的界面更好看,截图可以自动识别,而Android Studio只能手动划分截图界面。

怎么选择还是看各位吧,每个人都有自己的习惯,上述仅为个人观点,仁者见仁智者见智。

                                             好了,放学吃饭去!