Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Data saving and reading of memory card

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

memory card

2.1 data save

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

try {

FileOutputStream fos=new FileOutputStream(file);

fos.write(content.getBytes());

fos.close();

Toast.makeText(getApplicationContext(), "Save successfully", 200).show();

} catch (Exception e) {

Toast.makeText(getApplicationContext(), "Save Failed", 200).show();

e.printStackTrace();

}

2.2 data read

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

try {

FileOutputStream fos=new FileOutputStream(file);

fos.write(content.getBytes());

fos.close();

Toast.makeText(getApplicationContext(), "Save successfully", 200).show();

} catch (Exception e) {

Toast.makeText(getApplicationContext(), "Save Failed", 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(), "cannot be empty", 200).show();

//Get Editor

Editor edit = sp.edit();

//Save data

edit.putString("name", user);

edit.putString("pwd", pwd);

//submit save

edit.commit();

}

}

});

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report