溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Internal Storage內(nèi)部存儲

發(fā)布時間:2020-07-26 10:11:12 來源:網(wǎng)絡 閱讀:306 作者:鷺島猥瑣男 欄目:移動開發(fā)

package com.example.zzwinternalstorage;

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

import org.apache.http.util.ByteArrayBuffer;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends Activity
{
   private TextView tv;

   public void btn_save(View v)
   {
       FileOutputStream fos = null;
       try
       {
           fos = openFileOutput("zzw.json", MODE_PRIVATE);
           String name = "我是誰";
           fos.write(name.getBytes());
       }
       catch (FileNotFoundException e)
       {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }
       catch (IOException e)
       {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }
       finally
       {
           if (fos != null)
           {
               try
               {
                   fos.close();
               }
               catch (IOException e)
               {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
               }
           }
       }

   }

   public void btn_read(View v)
   {
       FileInputStream fis = null;
       ByteArrayBuffer arrayBuffer = new ByteArrayBuffer(1024);
       try
       {
           fis = openFileInput("zzw.json");
           int len = 0;
           byte[] buffer = new byte[1024];
           while (-1 != (len = fis.read(buffer)))
           {
               arrayBuffer.append(buffer, 0, len);
           }
       }
       catch (FileNotFoundException e)
       {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }
       catch (IOException e)
       {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }finally{
           if(fis!=null){
               try
               {
                   fis.close();
               }
               catch (IOException e)
               {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
               }
           }
       }
       String str=new String(arrayBuffer.toByteArray(), 0, arrayBuffer.length());
       tv.setText(str);

   }

   @Override
   protected void onCreate(Bundle savedInstanceState)
   {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.activity_main);
       tv = (TextView) findViewById(R.id.textView1);
   }

   @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;
   }

}


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI