热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

黎活明8天快速掌握android视频教程14_把文件存放在SDCard

把文件保存在手机的内部存储空间中1首先必须在清单文件中添加权限

把文件保存在手机的内部存储空间中

1 首先必须在清单文件中添加权限


package&#61;"contract.test.savafileapplication" ><applicationandroid:allowBackup&#61;"true"android:icon&#61;"&#64;drawable/ic_launcher"android:label&#61;"&#64;string/app_name"android:theme&#61;"&#64;style/AppTheme" ><activityandroid:name&#61;".MyActivity"android:label&#61;"&#64;string/app_name" >

1、我们来看下业务层的代码&#xff0c;业务层的异常不要进行处理交给控制层activity进行处理&#xff0c;activity通过业务层返回的异常就知道业务是否操作成功&#xff0c;就可以在界面上做出相应的显示了

package contract.test.savafileapplication;import android.content.Context;
import android.os.Environment;import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
public class FileService {private Context context;public FileService(Context context) {this.context &#61; context;}public void saveTosdCard(String fileName, String fileContext) throws Exception {File file &#61; new File(Environment.getExternalStorageDirectory(),fileName);FileOutputStream fileOutputStream &#61; new FileOutputStream(file);fileOutputStream.write(fileContext.getBytes());fileOutputStream.close();}public String readFromSdCard(String filename) throws IOException{File file &#61; new File(Environment.getExternalStorageDirectory(),filename);FileInputStream fileInputStream &#61; new FileInputStream(file);byte[] bytes &#61; new byte[1024];ByteArrayOutputStream byteArrayOutputStream &#61; new ByteArrayOutputStream();/*byte是基本数据类型 如int类型Byte是byte的包装类*/int len &#61; 0;while ((len &#61; fileInputStream.read(bytes))!&#61;-1){byteArrayOutputStream.write(bytes,0,len);}byteArrayOutputStream.close();fileInputStream.close();String str &#61; new String(byteArrayOutputStream.toString());return str;}
}

 

activity的代码&#xff1a;

package contract.test.savafileapplication;import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;import java.io.IOException;public class MyActivity extends Activity {private Button save , show;private EditText filename, filecontext;private TextView showContext;&#64;Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_my);save &#61; (Button)this.findViewById(R.id.saveButton);show &#61; (Button)this.findViewById(R.id.showButton);filename &#61; (EditText)this.findViewById(R.id.fileName_ET);filecontext &#61; (EditText)this.findViewById(R.id.saveContext_ET);showContext &#61; (TextView)this.findViewById(R.id.showConTextView);save.setOnClickListener(new View.OnClickListener() {&#64;Overridepublic void onClick(View v) {String name &#61; filename.getText().toString();String context &#61; filecontext.getText().toString();FileService fileService &#61; new FileService(getApplicationContext());try {if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){fileService.saveTosdCard(name,context);Toast.makeText(getApplicationContext(),"文件保存成功&#xff01;",Toast.LENGTH_LONG).show();}else{Toast.makeText(getApplicationContext(),"sdCard不存在或者写保护&#xff01;",Toast.LENGTH_LONG).show();}} catch (Exception e) {Toast.makeText(getApplicationContext(),"文件保存失败&#xff01;",Toast.LENGTH_LONG).show();e.printStackTrace();}}});show.setOnClickListener(new View.OnClickListener() {&#64;Overridepublic void onClick(View v) {FileService fileService &#61; new FileService(getApplicationContext());String name &#61; filename.getText().toString();try {if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){String str &#61; fileService.readFromSdCard(name);Toast.makeText(getApplicationContext(),"文件读取成功&#xff01;",Toast.LENGTH_LONG).show();showContext.setText(str);}else{Toast.makeText(getApplicationContext(),"sdCard不存在或者写保护&#xff01;",Toast.LENGTH_LONG).show();}} catch (IOException e) {e.printStackTrace();Toast.makeText(getApplicationContext(),"文件读取失败&#xff01;",Toast.LENGTH_LONG).show();}}});}&#64;Overridepublic boolean onCreateOptionsMenu(Menu menu) {// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.my, menu);return true;}&#64;Overridepublic 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 &#61; item.getItemId();if (id &#61;&#61; R.id.action_settings) {return true;}return super.onOptionsItemSelected(item);}
}

xml的代码&#xff1a;

xml version&#61;"1.0" encoding&#61;"utf-8"?>
<LinearLayout xmlns:android&#61;"http://schemas.android.com/apk/res/android"android:orientation&#61;"vertical"android:layout_width&#61;"fill_parent"android:layout_height&#61;"fill_parent"><TextViewandroid:layout_width&#61;"fill_parent"android:layout_height&#61;"wrap_content"android:text&#61;"请输入要保存的文件名:"/><EditTextandroid:id&#61;"&#64;&#43;id/fileName_ET"android:layout_width&#61;"fill_parent"android:layout_height&#61;"50dp"android:hint&#61;"请输入要保存的文件名&#xff01;"/><TextViewandroid:layout_width&#61;"fill_parent"android:layout_height&#61;"wrap_content"android:text&#61;"请您输入要保存的内容&#xff1a;"/><EditTextandroid:id&#61;"&#64;&#43;id/saveContext_ET"android:layout_width&#61;"fill_parent"android:layout_height&#61;"wrap_content"android:hint&#61;"请您在此处输入文件内容&#xff01;"/><Buttonandroid:id&#61;"&#64;&#43;id/saveButton"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:text&#61;"save"/><Buttonandroid:id&#61;"&#64;&#43;id/showButton"android:layout_width&#61;"wrap_content"android:layout_height&#61;"wrap_content"android:text&#61;"show"/><TextViewandroid:id&#61;"&#64;&#43;id/showConTextView"android:layout_width&#61;"fill_parent"android:layout_height&#61;"wrap_content"/>
LinearLayout>

 

转:https://www.cnblogs.com/kebibuluan/p/6757318.html



推荐阅读
  • Spring – Bean Life Cycle
    Spring – Bean Life Cycle ... [详细]
  • 本文介绍了一种自定义的Android圆形进度条视图,支持在进度条上显示数字,并在圆心位置展示文字内容。通过自定义绘图和组件组合的方式实现,详细展示了自定义View的开发流程和关键技术点。示例代码和效果展示将在文章末尾提供。 ... [详细]
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • 开机自启动的几种方式
    0x01快速自启动目录快速启动目录自启动方式源于Windows中的一个目录,这个目录一般叫启动或者Startup。位于该目录下的PE文件会在开机后进行自启动 ... [详细]
  • Android 构建基础流程详解
    Android 构建基础流程详解 ... [详细]
  • 本文探讨了资源访问的学习路径与方法,旨在帮助学习者更高效地获取和利用各类资源。通过分析不同资源的特点和应用场景,提出了多种实用的学习策略和技术手段,为学习者提供了系统的指导和建议。 ... [详细]
  • 在处理遗留数据库的映射时,反向工程是一个重要的初始步骤。由于实体模式已经在数据库系统中存在,Hibernate 提供了自动化工具来简化这一过程,帮助开发人员快速生成持久化类和映射文件。通过反向工程,可以显著提高开发效率并减少手动配置的错误。此外,该工具还支持对现有数据库结构进行分析,自动生成符合 Hibernate 规范的配置文件,从而加速项目的启动和开发周期。 ... [详细]
  • Spring框架中的面向切面编程(AOP)技术详解
    面向切面编程(AOP)是Spring框架中的关键技术之一,它通过将横切关注点从业务逻辑中分离出来,实现了代码的模块化和重用。AOP的核心思想是将程序运行过程中需要多次处理的功能(如日志记录、事务管理等)封装成独立的模块,即切面,并在特定的连接点(如方法调用)动态地应用这些切面。这种方式不仅提高了代码的可维护性和可读性,还简化了业务逻辑的实现。Spring AOP利用代理机制,在不修改原有代码的基础上,实现了对目标对象的增强。 ... [详细]
  • 本文探讨了利用Java实现WebSocket实时消息推送技术的方法。与传统的轮询、长连接或短连接等方案相比,WebSocket提供了一种更为高效和低延迟的双向通信机制。通过建立持久连接,服务器能够主动向客户端推送数据,从而实现真正的实时消息传递。此外,本文还介绍了WebSocket在实际应用中的优势和应用场景,并提供了详细的实现步骤和技术细节。 ... [详细]
  • 掌握Android UI设计:利用ZoomControls实现图片缩放功能
    本文介绍了如何在Android应用中通过使用ZoomControls组件来实现图片的缩放功能。ZoomControls提供了一种简单且直观的方式,让用户可以通过点击放大和缩小按钮来调整图片的显示大小。文章详细讲解了ZoomControls的基本用法、布局设置以及与ImageView的结合使用方法,适合初学者快速掌握Android UI设计中的这一重要功能。 ... [详细]
  • 技术分享:深入解析GestureDetector手势识别机制
    技术分享:深入解析GestureDetector手势识别机制 ... [详细]
  • 零拷贝技术是提高I/O性能的重要手段,常用于Java NIO、Netty、Kafka等框架中。本文将详细解析零拷贝技术的原理及其应用。 ... [详细]
  • 本文介绍如何在 Android 中自定义加载对话框 CustomProgressDialog,包括自定义 View 类和 XML 布局文件的详细步骤。 ... [详细]
  • 单片微机原理P3:80C51外部拓展系统
      外部拓展其实是个相对来说很好玩的章节,可以真正开始用单片机写程序了,比较重要的是外部存储器拓展,81C55拓展,矩阵键盘,动态显示,DAC和ADC。0.IO接口电路概念与存 ... [详细]
  • 原文网址:https:www.cnblogs.comysoceanp7476379.html目录1、AOP什么?2、需求3、解决办法1:使用静态代理4 ... [详细]
author-avatar
流丶血的卓洛
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有