Android file类
在开发Android应用时免不了会跟文件打交道,本篇文章记录总结自己常用到的文件操作,数据的存储有多种方式,比如数据库存储、SharedPreferences存储、文件存储等;这里我们将要介绍最简单的文件存储方式;文件存储简单的来说就是一般的JAVASE中的IO流,只是把他应用于Android手机中而已。
Android file类使用案例效果:
读取:
代码实现:
activity_main.xml页面:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp"
tools:context="${relativePackage}.${activityClass}" >
<EditText
android:id="@+id/edit"
android:layout_width="match_parent"
android:layout_height="200sp"
android:gravity="top"
android:inputType="textMultiLine"/>
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="保存" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="读取" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
FileUtils.java读取,保存方法:
package com.com.filedemo;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class FileUtils {
//保存
public static void save(OutputStream outputStream, String content){
try {
//getBytes转为字节数组,以字节数组存储
outputStream.write(content.getBytes());
outputStream.close();
} catch (IOException e) {
System.out.println("保存失败!");
}
}
//读取
public static String read(InputStream inputStream){
//字节数组输出流
ByteArrayOutputStream os = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len;
byte[] data = null;
try {
//读取字符,读取出来是在buffer数组中
while((len = inputStream.read(buffer)) != -1){
//把buffer数组中的数据存放到os字节数组中
os.write(buffer, 0, len);
}
//把字节数组中的数据保存到data中
data = os.toByteArray();
os.close();
inputStream.close();
} catch (IOException e) {
System.out.println("读取异常!");
}
return new String(data);
}
}
MainActivity.java
package com.com.filedemo;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.OutputStream;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends Activity implements OnClickListener {
private EditText edit;
private Button button1;
private Button button2;
private TextView text;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
edit = (EditText) findViewById(R.id.edit);
button1 = (Button) findViewById(R.id.button1);
button2 = (Button) findViewById(R.id.button2);
text = (TextView) findViewById(R.id.text);
button1.setOnClickListener(this);
button2.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.button1:
try {
//输入流,data.txt文件名,MODE_PRIVATE私有的
OutputStream outStream = this.openFileOutput("data.txt", MODE_PRIVATE);
String content = edit.getText().toString();
//保存
FileUtils.save(outStream, content);
Toast.makeText(this, "文件保存成功", Toast.LENGTH_LONG).show();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
break;
case R.id.button2:
//输出流
try {
InputStream inputStream = openFileInput("data.txt");
//读取
String str = FileUtils.read(inputStream);
text.setText(str);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
break;
default:
break;
}
}
}
这里还有很多方法没有用到,下面是一下常用的其他方法:
判断方法
boolean canExecute()判断文件是否可执行
boolean canRead()判断文件是否可读
boolean canWrite() 判断文件是否可写
boolean exists() 判断文件是否存在
boolean isDirectory()
boolean isFile()
boolean isHidden()
boolean isAbsolute()判断是否是绝对路径 文件不存在也能判断
获取方法
String getName()
String getPath()
String getAbsolutePath()
String getParent()//如果没有父目录返回null
long lastModified()//获取最后一次修改的时间
long length()
boolean renameTo(File f)
File[] liseRoots()//获取机器盘符
String[] list()
String[] list(FilenameFilter filter)