针对文件的存取

 package com.example.file01;

 import com.example.service.FileService;

 import android.app.Activity;
 import android.os.Bundle;
 import android.view.*;
 import android.widget.*;

 public class MainActivity extends Activity {

     @Override
     protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.activity_main);

         Button button=(Button)this.findViewById(R.id.button1);

         button.setOnClickListener(new ButtonClickListener());

     }

     private class ButtonClickListener implements View.OnClickListener{

         @Override
         public void onClick(View v) {
             // TODO Auto-generated method stub
             EditText filename1=(EditText)findViewById(R.id.editText1);
             EditText content1=(EditText)findViewById(R.id.EditText01);
             String filename=filename1.getText().toString();
             String content=content1.getText().toString();
             FileService service=new FileService(getApplicationContext());
             try {
                 service.save(filename,content);

                 Toast.makeText(getApplicationContext(), "success", 1).show();
             } catch (Exception e) {
                 // TODO Auto-generated catch block
                 e.printStackTrace();

                 Toast.makeText(getApplicationContext(), "fail", 1).show();
             }

         }

     }

     @Override
     public boolean onCreateOptionsMenu(Menu menu) {
         // Inflate the menu; this adds items to the action bar if it is present.
         getMenuInflater().inflate(R.menu.main, menu);
         return true;
     }

     @Override
     public boolean onOptionsItemSelected(MenuItem item) {
         // Handle action bar item clicks here. The action bar will
         // automatically handle clicks on the Home/Up button, so long
         // as you specify a parent activity in AndroidManifest.xml.
         int id = item.getItemId();
         if (id == R.id.action_settings) {
             return true;
         }
         return super.onOptionsItemSelected(item);
     }
 }
 package com.example.service;

 import java.io.ByteArrayOutputStream;
 import java.io.*;
 import java.io.FileOutputStream;

 import android.content.Context;

 public class FileService {
     private Context context;

     public FileService(Context context) {
         this.context = context;
     }

     /**
      * 保存文件
      * @param filename    文件名
      * @param content    文件内容
      */
     public void save(String filename, String content)throws Exception {
         // TODO Auto-generated method stub
         FileOutputStream outStream=context.openFileOutput(filename, Context.MODE_PRIVATE);

         outStream.write(content.getBytes());
         outStream.close();
     }

     /**
      *
      * @param filename
      * @return
      * @throws Exception
      */
     public String read(String filename)throws Exception {
         FileInputStream inStream=context.openFileInput(filename);
         ByteArrayOutputStream outStream=new ByteArrayOutputStream();
         byte[]    buffer =new byte [1024];
         int len=0;
         while((len=inStream.read(buffer))!=-1){
             outStream.write(buffer,0,len);

         }
         byte[] date=outStream.toByteArray();
         return new String(date);

     }
 }

测试,需要添加一些东西

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.example.file01"
     android:versionCode="1"
     android:versionName="1.0" >

     <uses-sdk
         android:minSdkVersion="19"
         android:targetSdkVersion="19" />

     <application

         android:allowBackup="true"
         android:icon="@drawable/ic_launcher"
         android:label="@string/app_name"
         android:theme="@style/AppTheme" >
         <uses-library android:name="android.test.runner" />
         <activity
             android:name=".MainActivity"
             android:label="@string/app_name" >
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />

                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>

     </application>

         <instrumentation
         android:name="android.test.InstrumentationTestRunner"
         android:targetPackage="com.example.file01" />
 </manifest>

测试用代码

 package com.example.test;

 import com.example.service.FileService;

 import android.test.AndroidTestCase;
 import android.util.Log;

 public class testfileread extends AndroidTestCase {
     private static final String TAG="wang.txt";
         public void testread() throws Throwable{
             FileService service =new FileService(this.getContext());
             String s=service.read("wang.txt");
             Log.i(TAG, s);
         }
 }

Android 笔记 文件存取 day5的更多相关文章

  1. Android笔记——Android中数据的存储方式(二)

    我们在实际开发中,有的时候需要储存或者备份比较复杂的数据.这些数据的特点是,内容多.结构大,比如短信备份等.我们知道SharedPreferences和Files(文本文件)储存这种数据会非常的没有效 ...

  2. Android笔记:触摸事件的分析与总结----TouchEvent处理机制

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://glblong.blog.51cto.com/3058613/1559320   ...

  3. Python学习笔记,day5

    Python学习笔记,day5 一.time & datetime模块 import本质为将要导入的模块,先解释一遍 #_*_coding:utf-8_*_ __author__ = 'Ale ...

  4. Android 笔记之 R 文件

    Android笔记之R文件 h2{ color: #4abcde; } a{ color: blue; text-decoration: none; } a:hover{ color: red; te ...

  5. Android 笔记之 Android 系统架构

    Android笔记之Android系统架构 h2{ color: #4abcde; } a{ color: blue; text-decoration: none; } a:hover{ color: ...

  6. 《从零开始学Swift》学习笔记(Day5)——我所知道的标识符和关键字

    Swift 2.0学习笔记(Day5)——我所知道的标识符和关键字   原创文章,欢迎转载.转载请注明:关东升的博客 好多计算机语言都有标识符和关键字,一直没有好好的总结,就是这样的用着,现在小小的整 ...

  7. Android笔记之使用Glide加载网络图片、下载图片

    Glide简介 不想说太多,真的很方便:P)可以节省我不少时间 GitHub地址:https://github.com/bumptech/glide 加载网络图片到ImageView Glide.wi ...

  8. Android笔记--View绘制流程源码分析(二)

    Android笔记--View绘制流程源码分析二 通过上一篇View绘制流程源码分析一可以知晓整个绘制流程之前,在activity启动过程中: Window的建立(activit.attach生成), ...

  9. Android笔记--View绘制流程源码分析(一)

    Android笔记--View绘制流程源码分析 View绘制之前框架流程分析 View绘制的分析始终是离不开Activity及其内部的Window的.在Activity的源码启动流程中,一并包含 着A ...

随机推荐

  1. php function集合

    /*更新商品的某个字段*/ function update_goods($goods_id, $field, $value) { if ($goods_id) { /* 清除缓存 */ clear_c ...

  2. css水平垂直居中对齐方式

    1.文字或者内联元素的垂直水平居中对齐 css属性 -- 水平居中:text-aligin:center; 垂直居中: line-height:height; 例子:. html: <div c ...

  3. python3 安装scrapy

    twisted(网络异步框架) wget https://pypi.python.org/packages/dc/c0/a0114a6d7fa211c0904b0de931e8cafb5210ad82 ...

  4. 8Spring初步----青软S2SH(笔记)

    例子: bean.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns=" ...

  5. display:none显示和隐藏

    <html> <head> <title>显示和隐藏问题</title> <meta charset="utf-8"/> ...

  6. 把代码搬到Git Hub 吧(一)

    作为码农的我们,应该都是知道Git Hub,因为git几乎是码农必备的技能啊,所以就不多介绍Git Hub了,直入主题,这篇博客主要讲解Git Hub网页端和客户端的操作. 网页端: 首页第一步自然是 ...

  7. 图解TCP/IP→第2章基础知识

    ####TCP.IP背景**关键词:ARPANET,UNIX,分组交换技术,*ARPANET(阿帕网),也是全球互联网的鼻祖.阿帕网的成功也充分证明了基于分组交换技术的通信方法的可行性.*20世纪70 ...

  8. 【IDEA 2016】intellij idea tomcat jsp 热部署

    刚开始用IDEA,落伍的我,只是觉得IDEA好看.可以换界面.想法如此的low. 真是不太会用啊,弄好了tomcat.程序启动竟然改动一下就要重启,JSP页面也一样. IDEA可以配置热部署,打开to ...

  9. json-c与树

    json是一种轻量级的数据交换格式,因为其灵巧使得其在应用层开发以及接口层开发使用的十分广泛,最常用的莫过于协议交流使用json数据,比xml轻巧,又比二进制数据有规则.无论是各大公司的开放平台或者是 ...

  10. VB中PictureBox控件使用教程

    PictureBox对象可以说是任何对象的原始型态,它可以加载图片.显示文字.画图外,它还能与Frame对象一样,在自己本身里头加载其它的对象而自成一个小群组,用PictureBox可以仿真出任何对象 ...