xml文件
公司專注于為企業(yè)提供成都網(wǎng)站制作、做網(wǎng)站、微信公眾號開發(fā)、商城網(wǎng)站建設(shè),微信小程序定制開發(fā),軟件定制網(wǎng)站設(shè)計等一站式互聯(lián)網(wǎng)企業(yè)服務(wù)。憑借多年豐富的經(jīng)驗,我們會仔細了解各客戶的需求而做出多方面的分析、設(shè)計、整合,為客戶設(shè)計出具風格及創(chuàng)意性的商業(yè)解決方案,創(chuàng)新互聯(lián)建站更提供一系列網(wǎng)站制作和網(wǎng)站推廣的服務(wù)。
Utils
package com.example.android22filelogin; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.InputStreamReader; import java.util.HashMap; import java.util.Map; import android.text.TextUtils; public class Utils { public static boolean saveUserInfo(String username,String pwd){ String data=username+"##"+pwd; String path="/data/data/com.example.android22filelogin/data.txt"; try { FileOutputStream out=new FileOutputStream(path); out.write(data.getBytes()); out.flush(); out.close(); return true; } catch (Exception e) { e.printStackTrace(); } return false; } public static MapgetUserInfo(){ String path="/data/data/com.example.android22filelogin/data.txt"; try { BufferedReader reader=new BufferedReader(new InputStreamReader(new FileInputStream(path))); String data=reader.readLine(); if(!TextUtils.isEmpty(data)) { String [] datas=data.split("##"); Map userinfo=new HashMap (); userinfo.put("number", datas[0]); userinfo.put("pwd", datas[1]); return userinfo; } } catch (Exception e) { e.printStackTrace(); } return null; } }
activity
public class MainActivity extends Activity implements OnClickListener { private EditText qqnum,pwd; private CheckBox rem; private Button but; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); qqnum=(EditText)findViewById(R.id.qqnum); pwd=(EditText)findViewById(R.id.pass); rem=(CheckBox)findViewById(R.id.rem); but=(Button)findViewById(R.id.Login); but.setOnClickListener(this); //回顯數(shù)據(jù) Mapuserinfo=Utils.getUserInfo(); if(userinfo!=null) { qqnum.setText(userinfo.get("number")); pwd.setText(userinfo.get("pwd")); } } @Override public void onClick(View v) { //記住號碼和密碼 String num=qqnum.getText().toString(); String password=pwd.getText().toString(); if(TextUtils.isEmpty(num)||TextUtils.isEmpty(password)) { Toast.makeText(this, "用戶名或密碼不能為空", Toast.LENGTH_LONG).show(); return; } //判斷是否記住密碼 if(rem.isChecked()) { boolean isSuccess=Utils.saveUserInfo(num, password); Toast.makeText(this, isSuccess+"", Toast.LENGTH_LONG).show(); } //登錄成功 } }