內存卡的數據保存與讀取

,內存卡

     2.1數據保存

File file=new File(Environment.getExternalStorageDirectory(), name);

                                                  try {

                                                            FileOutputStream   fos=new FileOutputStream(file);

                                                            fos.write(content.getBytes());

                                                            fos.close();

                                                               Toast.makeText(getApplicationContext(), "保存成功", 200).show();

                                                  }  catch (Exception e) {

                                                               Toast.makeText(getApplicationContext(), "保存失敗", 200).show();

                                                            e.printStackTrace();

                                                  }

                     


 

2.2數據讀取

File file=new File(Environment.getExternalStorageDirectory(), name);

                                                  try {

                                                            FileOutputStream   fos=new FileOutputStream(file);

                                                            fos.write(content.getBytes());

                                                            fos.close();

                                                               Toast.makeText(getApplicationContext(), "保存成功", 200).show();

                                                  }  catch (Exception e) {

                                                               Toast.makeText(getApplicationContext(), "保存失敗", 200).show();

                                                            e.printStackTrace();

                                                  }


 


  3,sharedprefrence (****)

   

       btn_ok.setOnClickListener(new OnClickListener() {

                               

                              @Override

                              public void onClick(View v) {

                                         

                                                  String  user = et_user.getText().toString().trim();

                                                  String  pwd = et_pwd.getText().toString().trim();

                                                  if(user.isEmpty()||pwd.isEmpty()){

                                                            Toast.makeText(getApplicationContext(), "不能爲空", 200).show();

                                                            //獲取編輯器

                                                     Editor edit = sp.edit();

                                                                 //保存數據

                                                     edit.putString("name", user);

                                                     edit.putString("pwd", pwd);

                                                     //提交保存

                                                     edit.commit();          

                                                  }                                        

                              }

                    });


 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章