学习Android之第八个小程序文件保存(Notification、AndroidTestCase)

效果图:

     

.java文件有MainActivity.java、FileService.java、FileServiceTest.java, .xml文件有activity_main.xml。

本次注重AndroidTestCase类的使用,在开发中非常实用。用于测试某一功能。

使用AndroidTestCase类,有如下的要求:

1.在AndroidManifest.xml文件中,<manifest></manifest>中添加如下:

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

2.在AndroidManifest.xml文件中, <application> </application>中添加如下:

 <uses-library android:name="android.test.runner" />

3.建立测试类,继承AndroidTestCase,编写测试方法。

MainAcitity.java

package com.example.l3_files;

import android.os.Bundle;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import java.io.IOException;
import com.example.l3_files.model.FileService;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

	private FileService fileService;
	private Button saveButton;
	NotificationManager notificationManager;
	Notification notification;
	PendingIntent pendingIntent;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		fileService = new FileService(this);

		saveButton = (Button) this.findViewById(R.id.save);

		notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

		pendingIntent = PendingIntent
				.getActivity(MainActivity.this, 0, null, 0);

		notification = new Notification();

		saveButton.setOnClickListener(new View.OnClickListener() {

			@Override
			public void onClick(View v) {
				EditText fileNameText = (EditText) findViewById(R.id.filename);
				EditText fileContentText = (EditText) findViewById(R.id.filecontent);

				String fileName = fileNameText.getText().toString();
				String fileContent = fileContentText.getText().toString();

				try {
					fileService.save(fileName, fileContent);
					Toast.makeText(MainActivity.this, R.string.success,
							Toast.LENGTH_LONG).show();
				} catch (IOException e) {
					e.printStackTrace();
					Toast.makeText(MainActivity.this, R.string.failure,
							Toast.LENGTH_LONG).show();
				}

				notification.icon = R.drawable.ic_launcher;
				notification.tickerText = "文件保存成功";
				notification.setLatestEventInfo(MainActivity.this, fileName,
						fileContent, pendingIntent);
				notificationManager.notify(0, notification);
			}

		});
	}

}

FileService.java

package com.example.l3_files.model;

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

import android.content.Context;

public class FileService {

	private Context context;

	public FileService(Context context) {
		super();
		this.context = context;
	}
	/**
	 * 保存文件
	 * @param filename 文件名称
	 * @param filecontent 文件内容
	 * @throws IOException
	 */
	public void save(String filename,String filecontent) throws IOException{
		//第1个参数是文件的名称,第2个参数是操作模式
		FileOutputStream fos=context.openFileOutput(filename, Context.MODE_WORLD_WRITEABLE+Context.MODE_WORLD_READABLE);
		fos.write(filecontent.getBytes());
		fos.close();
	}

	public String readFile(String filename) throws IOException{
		FileInputStream fis=context.openFileInput(filename);
		int len=0;
		byte[] buffer=new byte[1024];
		ByteArrayOutputStream baos=new ByteArrayOutputStream();//往内存中输出数据的
		while((len=fis.read(buffer))!=-1)//如果数据量很大,第2次读取的数据有可能会把第1次读取的数据给覆盖掉
		{
		   baos.write(buffer,0,len);
		}

		byte[] data=baos.toByteArray();//得到内存中的数据 以二进制存放的
		baos.close();
		fis.close();
		return new String(data);//根据二进制数据转换成所对应的字符串
	}
}

FileServiceTest.java(测认单元类)

package com.example.l3_files.model;

import java.io.IOException;

import android.test.AndroidTestCase;

public class FileServiceTest extends AndroidTestCase {  //测试单元
	public void testSave() throws IOException {
		FileService fileService=new FileService(getContext());
		fileService.save("file1.txt", "保存测试");
	}
	public void testReadFile() throws IOException {
		FileService fileService=new FileService(getContext());
    	String content=fileService.readFile("file1.txt");
        System.out.println(content);
	}

}

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/filename" />

    <EditText
        android:id="@+id/filename"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/filecontent" />

    <EditText
        android:id="@+id/filecontent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="top"
        android:minLines="5" />

    <Button
        android:id="@+id/save"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/save" />

</LinearLayout>

测试类的使用:

右键已编写的测试方法,Run as->Android JUnit  Test.

如下测试成功,如果Errors不为0,则测试失败。

学习Android之第八个小程序文件保存(Notification、AndroidTestCase),布布扣,bubuko.com

时间: 2024-09-29 22:45:37

学习Android之第八个小程序文件保存(Notification、AndroidTestCase)的相关文章

学习Android之第六个小程序新浪微博(二)(ListView和TabActivity)

效果图例如以下: 选项卡的使用: 1.继承TabActivity 2.声明TabHost变量,通过方法getTabHost()获取并赋值. (TabHost  tabHost =getTabHost() ;) 3.在xml文件里,创建TabHost组件和TabWidget组件.而且TabHost组件的id属性必须是: android:id="@android:id/tabhost" , TabWidgett组件的id属性必须是:android:id="@android:id/

自动批改android模拟器的imei的小程序 和 下载各个版本SDK Tools及ADT

ADT 22.6.0版本的下载路径是:http://dl.google.com/android/ADT-22.6.0.zip ADT22.6.1版本的下载路径是:http://dl.google.com/android/ADT-22.6.1.zip SDK Tools r22.6版本的下载路径是:http://dl.google.com/android/android-sdk_r22.6-windows.zip SDK Tools r22.6.1版本的下载路径是:http://dl.google

学习mpvue : 使用mpvue实现2048小程序

2048 小程序移植版 使用mpvue编写的2048小程序, 仅供交流学习. 图片展示 核心代码 初始化 [00][01][02][03] [10][11][12][13] [20][21][22][23] [30][31][32][33] (例)左移 假设 索引为 => [00][01][02][03] 对应值 => 2 2 0 4 1.建立一个栈 2.从左入栈,如果入栈元素为0, 不做任何处理 否则每入一个栈之前和栈顶元素做对比 如果和栈顶元素不同,入栈 {number: x, flag:

单片机 学习笔记(二)——简单小程序

今天收获了单片机的几个简单小程序:     延时程序: void Delay(unsigned int xx) //输入 xx :ms { while(xx--) { Delay1ms(); } } void Delay1ms() //@11.0592MHz 1ms { unsigned char i, j; _nop_(); _nop_(); _nop_(); i = 11; j = 190; do { while (--j); } while (--i); } 流水灯程序: #include

微信小程序文件作用域模块引用

文件作用域 在 JavaScript 文件中声明的变量和函数只在该文件中有效:不同的文件中可以声明相同名字的变量和函数,不会互相影响. 通过全局函数 getApp() 可以获取全局的应用实例,如果需要全局的数据可以在 App() 中设置, 如: // app.js App({ globalData: 1 }) // a.js // The localValue can only be used in file a.js. var localValue = 'a' // Get the app i

.vue,跟小程序文件在sublime里面怎么实现代码格式化

.vue文件跟小程序的.wxml,.wxss用sublime的HTML/CSS/JS prettify插件也可以实现格式化代码的效果 首先你在sublime要已经安装好了HTML/CSS/JS prettify插件 preferences=>Package settings=>HTML/CSS/JS prettify=>Set Prettify Preferences=> "allowed_file_extensions": ["htm",

小程序文件上传uploadFile

前台代码: bindPhoto(e) { var that = this; wx.chooseImage({ count: 1, sizeType: ['original','compressed'],// 指定原图或者压缩图 sourceType: ['album', 'camera'], // 指定图片来源 success: function (res) { var tempFilePaths = res.tempFilePaths; wx.uploadFile({ url: 'http:/

cpp学习笔记 1一个简单的小程序以及一些的知识点

今天买的cpp到了从今天開始又一次学习cpp如今发现学校发的书真的不怎莫样. <em>#include<stdio.h>//预处理命令 int main()/*第一个被调用的函数.能够比作是一个房子的门()代表main是一个函数. int 指明了返回值的类型*/ { int num;/*声明语句.声明了两件事一有一个名为num的变量二int 说明生命的变量 是一个整形. int是一个keyword num 是一个标示符 */ num = 1;//给变量赋值 printf("

【总结】学习Socket编写的聊天室小程序

1.前言 在学习Socket之前,先来学习点网络相关的知识吧,自己学习过程中的一些总结,Socket是一门很高深的学问,本文只是Socket一些最基础的东西,大神请自觉绕路. 传输协议 TCP:Transmission Control Protocol 传输控制协议TCP是一种面向连接(连接导向)的.可靠的.基于字节流的运输层(Transport layer)通信协议. 特点: 面向连接的协议,数据传输必须要建立连接,所以在TCP中需要连接时间. 传输数据大小限制,一旦连接建立,双方可以按统一的