文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android编程中File文件常见存储与读取操作的示例分析

2023-05-30 20:11

关注

这篇文章给大家分享的是有关Android编程中File文件常见存储与读取操作的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

具体如下:

MainActivity文件代码如下:

package example.com.myapplication;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.EditText;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.PrintStream;public class MainActivity extends Activity{  final String FILE_NAME = "test.txt";  @Override  public void onCreate(Bundle savedInstanceState)  {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    System.out.println(new StringBuilder("a").append("b").append("c")        .toString());    // 获取两个按钮    Button read = (Button) findViewById(R.id.read);    Button write = (Button) findViewById(R.id.write);    // 获取两个文本框    final EditText edit1 = (EditText) findViewById(R.id.edit1);    final EditText edit2 = (EditText) findViewById(R.id.edit2);    // 为write按钮绑定事件监听器    write.setOnClickListener(new View.OnClickListener()    {      @Override      public void onClick(View source)      {        // 将edit1中的内容写入文件中        write(edit1.getText().toString());        edit1.setText("");      }    });    read.setOnClickListener(new View.OnClickListener()    {      @Override      public void onClick(View v)      {        // 读取指定文件中的内容,并显示出来        edit2.setText(read());      }    });  }  private String read()  {    try    {      // 打开文件输入流      FileInputStream fis = openFileInput(FILE_NAME);      byte[] buff = new byte[1024];      int hasRead = 0;      StringBuilder sb = new StringBuilder("");      while ((hasRead = fis.read(buff)) > 0)      {        sb.append(new String(buff, 0, hasRead));      }      return sb.toString();    }    catch (Exception e)    {      e.printStackTrace();    }    return null;  }  private void write(String content)  {    try    {      // 以追加模式打开文件输出流      FileOutputStream fos = openFileOutput(FILE_NAME, MODE_APPEND);      // 将FileOutputStream包装成PrintStream      PrintStream ps = new PrintStream(fos);      // 输出文件内容      ps.println(content);      ps.close();    }    catch (Exception e)    {      e.printStackTrace();    }  }}

布局文件代码如下:

<!--?xml version="1.0" encoding="utf-8"?--><LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical">  <EditText    android:id="@+id/edit1"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:lines="4"/>    <Button      android:id="@+id/write"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:text="write"/>  <EditText    android:id="@+id/edit2"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:editable="false"    android:lines="4"/>  <Button    android:id="@+id/read"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:text="read"/>  </LinearLayout>

感谢各位的阅读!关于“Android编程中File文件常见存储与读取操作的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯