file存储

Posted storm47

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了file存储相关的知识,希望对你有一定的参考价值。

public void bt3(View v){

        try {
             //从内存写入文件
            //1.得到内部存储目录
                File file=getFilesDir();
        String s=file.getAbsolutePath();
        Toast.makeText(MainActivity.this, "path="+s, Toast.LENGTH_SHORT).show();

        //2.用输出流写入文件
        FileOutputStream fos=openFileOutput("test.txt",MODE_PRIVATE);

        //3.写入文件内容
        PrintStream ps=new PrintStream(fos);
        String ss=et.getText().toString();
        ps.println(ss);
        ps.print("测试");
        ps.close();
        fos.close();
        Toast.makeText(MainActivity.this, "保存成功", Toast.LENGTH_SHORT).show();}
        catch (Exception e){

        }
    }
    public  void bt4(View v){
        try {
        //输入流
        FileInputStream fis=openFileInput("test.txt");

            //定义byte[]
            byte []b=new byte[1024];
            int i;

            //循环读
            String str1="";
            while ((i=fis.read(b))>0){
                str1 =new String(b,0,i);
              }
            et2.setText(str1);
            fis.close();

    } catch (Exception e){

        }
    }

 

以上是关于file存储的主要内容,如果未能解决你的问题,请参考以下文章

Prometheus配置文件

如何将代码片段存储在 mongodb 中?

如何将 r ggplot 图存储为 html 代码片段

php代码片段: sendFile/videoStream/sendEmail/phpexcel/ffmpeg/zip

sql 这些代码片段将演示如何逐步使用PolyBase。你应该有一个blob存储和存储秘密方便

[异常解决] Make nRF51 DFU Project Appear "fatal error: uECC.h: No such file or directory"(代码片段