1.采用File类,在指定目录下读写数据

java后台代码为:

(1)向app的/data/data/com.example.lucky.helloworld目录下写入文本(涉及IO的读写操作)

package com.example.lucky.helloworld;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map; public class UserInfoUtils {
public static boolean saveInfo(String username,String password){
String result=username+"=="+password;
//创建File类,指定数据存储位置
File file=new File("/data/data/com.example.lucky.helloworld/info.txt");
try {
//创建一个文件的输出流
FileOutputStream fos=new FileOutputStream(file);
fos.write(result.getBytes()); //向文件中写入数据
fos.close(); //关闭文件
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
} //读取用户信息
public static Map<String,String> readInfo(){
//定义map
Map<String,String> map=new HashMap<>();
File file=new File("/data/data/com.example.lucky.helloworld/info.txt");
try {
FileInputStream fis=new FileInputStream(file);
BufferedReader br=new BufferedReader(new InputStreamReader(fis));
String strTemp=br.readLine(); //读取数据
String[] splitstr=strTemp.split("=="); //对字符串进行切割
String username=splitstr[0];
String password=splitstr[1];
map.put("name",username); //将数据放入map集合中
map.put("pw",password);
fis.close(); //关闭数据流
return map;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
}

(2)MainActivity.java代码

package com.example.lucky.helloworld;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast; import java.util.Map; public class MainActivity extends AppCompatActivity {
EditText et_username;
EditText et_password;
Button bt_login; //当Activityq启动时就会执行onCreate方法
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//设置activity的内容,内容来自布局文件activity_main.xml
setContentView(R.layout.activity_main);
Log.v("001","我是verbose级别");
Log.i("001","我是info级别");
Log.d("001","我是debug级别");
Log.w("001","我是warn级别");
Log.e("001","我是error级别");
System.out.println("sout输出");
et_username=findViewById(R.id.et_username);
et_password=findViewById(R.id.et_password);
bt_login=findViewById(R.id.bt_login); //读取/data/data/com.example.lucky.helloworld/info.txt文件
Map<String,String> map=UserInfoUtils.readInfo();
if(map!=null){
String name=map.get("name");
String password=map.get("pw");
et_username.setText(name); //将读取的数据显示出来
} bt_login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String username=et_username.getText().toString();
String password=et_password.getText().toString();
//安卓特有的工具类,用来判断string是否为空
if(TextUtils.isEmpty(username)||TextUtils.isEmpty(password)){
Toast.makeText(MainActivity.this,"用户名不能为空",Toast.LENGTH_SHORT).show();
}else {
boolean result=UserInfoUtils.saveInfo(username,password);
if(result){
Toast.makeText(MainActivity.this,"数据存储成功",Toast.LENGTH_SHORT).show();
}else {
Toast.makeText(MainActivity.this,"数据存储失败",Toast.LENGTH_SHORT).show();
}
}
}
});
}
}

2.利用Context类获取常用目录,存储文件(推荐使用)

文件数据保存的模式:

1)MODE_PRIVATE ,这个模式用得最多,其他的模式很少用

2)MODE_APPEND

3)MODE_WORLD_READABLE

4)MODE_WORLD_WRITEABLE

(1)读写工具类

package com.example.lucky.helloworld;

import android.content.Context;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map; public class UserInfoUtils {
public static boolean saveInfo(Context context, String username, String password){
String result=username+"=="+password; try {
//创建一个文件的输出流,使用上下文获取常用目录
FileOutputStream fos=context.openFileOutput("info2.txt",Context.MODE_PRIVATE);
fos.write(result.getBytes()); //向文件中写入数据
fos.close(); //关闭文件
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}
} //读取用户信息
public static Map<String,String> readInfo(Context context){
//定义map
Map<String,String> map=new HashMap<>();
try {
FileInputStream fis=context.openFileInput("info2.txt");
BufferedReader br=new BufferedReader(new InputStreamReader(fis));
String strTemp=br.readLine(); //读取数据
String[] splitstr=strTemp.split("=="); //对字符串进行切割
String username=splitstr[0];
String password=splitstr[1];
map.put("name",username); //将数据放入map集合中
map.put("pw",password);
fis.close(); //关闭数据流
return map;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
}

(2)MainActivity.class

package com.example.lucky.helloworld;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast; import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.util.Map; public class MainActivity extends AppCompatActivity {
EditText et_username;
EditText et_password;
Button bt_login;
Button bt_private;
Button bt_append;
Button bt_readable;
Button bt_writeable; //当Activityq启动时就会执行onCreate方法
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//设置activity的内容,内容来自布局文件activity_main.xml
setContentView(R.layout.activity_main);
init(); //info2.txt文件
Map<String,String> map=UserInfoUtils.readInfo(MainActivity.this);
if(map!=null){
String name=map.get("name");
String password=map.get("pw");
et_username.setText(name); //将读取的数据显示出来
} bt_login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String username=et_username.getText().toString();
String password=et_password.getText().toString();
//安卓特有的工具类,用来判断string是否为空
if(TextUtils.isEmpty(username)||TextUtils.isEmpty(password)){
Toast.makeText(MainActivity.this,"用户名不能为空",Toast.LENGTH_SHORT).show();
}else {
boolean result=UserInfoUtils.saveInfo(MainActivity.this,username,password);
if(result){
Toast.makeText(MainActivity.this,"数据存储成功",Toast.LENGTH_SHORT).show();
}else {
Toast.makeText(MainActivity.this,"数据存储失败",Toast.LENGTH_SHORT).show();
}
}
}
}); //在data/data/com.example.lucky.helloworld下创建files文件夹,生成属性为private的文件
bt_private.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try {
FileOutputStream fos=openFileOutput("private.txt",MODE_PRIVATE); //创建private.txt
fos.write("private".getBytes()); //写入数据
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}); //在data/data/com.example.lucky.helloworld下创建files文件夹,生成属性为append(可追加内容)的文件
bt_append.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try {
FileOutputStream fos=openFileOutput("append.txt",MODE_APPEND);
fos.write("append".getBytes());
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}); //在data/data/com.example.lucky.helloworld下创建files文件夹,生成属性为MODE_WORLD_READABLE的文件,只读模式
bt_readable.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try {
FileOutputStream fos=openFileOutput("readable.txt",MODE_WORLD_READABLE);
fos.write("readable".getBytes());
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}); bt_writeable.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
try {
FileOutputStream fos=openFileOutput("writeable.txt",MODE_WORLD_WRITEABLE);
fos.write("writeable".getBytes());
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
}
});
} private void init() {
et_username=findViewById(R.id.et_username);
et_password=findViewById(R.id.et_password);
bt_login=findViewById(R.id.bt_login);
bt_private=findViewById(R.id.bt_private);
bt_append=findViewById(R.id.bt_append);
bt_readable=findViewById(R.id.bt_readable);
bt_writeable=findViewById(R.id.bt_writeable);
}
}

Android TextUtils工具类的使用的更多相关文章

  1. 53. Android常用工具类

    主要介绍总结的Android开发中常用的工具类,大部分同样适用于Java.目前包括HttpUtils.DownloadManagerPro.ShellUtils.PackageUtils.Prefer ...

  2. Android 常见工具类封装

    1,MD5工具类: public class MD5Util { public final static String MD5(String s) { char hexDigits[] = { '0' ...

  3. 【转】Android常用工具类

    主要介绍总结的Android开发中常用的工具类,大部分同样适用于Java. 目前包括HttpUtils.DownloadManagerPro.ShellUtils.PackageUtils.Prefe ...

  4. Android基础工具类重构系列一Toast

    前言: 一直在考虑写一下Android实际项目中的一些总结,翻看CSDN博客,上一篇已经是一年多曾经. 本系列定位Android基础工具类重构.旨在记录实际项目中经经常使用到的一些工具类,比方Toas ...

  5. (转载)android 一些工具类汇总

    android 一些工具类汇总 作者:曾田生z 字体:[增加 减小] 类型:转载 时间:2016-08-14我要评论 本文给大家汇总介绍了一些常用的Android工具类,非常的简单实用,有需要的小伙伴 ...

  6. Android FileUtil(android文件工具类)

    android开发和Java开发差不了多少,也会有许多相同的功能.像本文提到的文件存储,在Java项目和android项目里面用到都是相同的.只是android开发的一些路径做了相应的处理. 下面就是 ...

  7. android开发工具类总结(一)

    一.日志工具类 Log.java public class L { private L() { /* 不可被实例化 */ throw new UnsupportedOperationException ...

  8. Android 开发工具类 35_PatchUtils

    增量更新工具类[https://github.com/cundong/SmartAppUpdates] import java.io.File; import android.app.Activity ...

  9. Android Joda-time工具类

    Joda-Time提供了一组Java类包用于处理包括ISO8601标准在内的date和time.可以利用它把JDK Date和Calendar类完全替换掉,而且仍然能够提供很好的集成.   Joda- ...

随机推荐

  1. 不要向没权力&能力的人证明自己的能力

    [不要向没权力&能力的人证明自己的能力] 不是所有的上级都有足够的权力和能力.一个没权力的Leader,即使你向他证明了自己的能力,你所能获得的也只能是他的邮件表扬的荣誉.对于加薪,他能给的仅 ...

  2. mfs测试

    续1 6. 参考文献: 6.1 文献 http://sery.blog.51cto.com/10037/263515  田逸 http://bbs.chinaunix.net/thread-16438 ...

  3. ubuntu14.04 安装PCL

    博客转自:https://blog.csdn.net/dwj6336736/article/details/76674018 系统安装 sudo add-apt-repository ppa:v-la ...

  4. hdu 4279 Number(G++提交)

    打表找规律: #include<stdio.h> #include<math.h> #define N 250 bool judge(int i,int j) { ;k< ...

  5. Asp.net WebPages框架运行原理浅析

    [来源] 达内    [编辑] 达内   [时间]2012-09-14 在Asp.net4和4.5中,新增了WebPages Framework,编写页面代码使用了新的Razor语法,代码更加的简洁和 ...

  6. ASP.NET多页面传递数据,附框架源码

    很多时候我们需要把数据传递到多个页面,比如表单提交可以指定提交数据到某个页面,那么关闭某个页面怎么把数据传递到上一个页面或者它的父页面. 在这里我附一段源码用于当前页面关闭指定某个页面刷新. 子页面方 ...

  7. iOS play video

    iOS: How to use MPMoviePlayerController up vote6down votefavorite 3 I've created a blank project (iO ...

  8. JavaEE互联网轻量级框架整合开发(书籍)阅读笔记(2):SSM+Redis概念理解

    一.SSM+Redis的结构图 在Java互联网中,以Spring+SpringMVC+MyBatis(SSM)作为主流框架,SSM+Redis的结构图如下: 二.下面介绍它们各自承担的功能: 1.S ...

  9. webapi put 请求405问题

    put 请求的时候  浏览器会像服务器发送两个请求 如何没做任何配置第一个options请求是会报错的 这是需要配置路由给options作响应 这时options请求就通过了,然后你们会看到你的put ...

  10. 「BZOJ 3209」花神的数论题

    Title Link 戳我 Title Solution 这道题可以运用组合数的思想啊,数位dp也可以,随便你怎么做,这里就讲一讲组合数的做法吧,要小于n,所以我们可以枚举n二进制下1的位置,在i-1 ...