1 判斷是不是手機號
public boolean ismobileno(string mobiles) $");
matcher m = p.matcher(mobiles);
return m.matches();
}2 判斷密碼格式是否正確
public boolean iscorrectpassword(string password) [a-za-z0-9]");
// 不要求第一位格式,字母和數字16位
// return password.matches("[a-za-z0-9]");
// 純6位數字
// return password.matches("[0-9]");
}3 android實現介面元件的抖動效果採用的animation動畫
第一步:準備兩個動畫效果的xml檔案,加入到 res/anim/目錄下:
shake.xml檔案:
cycle_7.xml檔案:
第二步: //**使用動畫效果:
4 edittext.setenabled(true);可編輯
edittext.setenabled(false);不可編輯
登入驗證碼
生成驗證碼 指定驗證碼的長度 public static string createvalidatecode int length 生成隨機數字 for int i 0 i length i 抽取隨機數字 for int i 0 i length i 生成驗證碼 for int i 0 i leng...
JSP基本註冊登入系統 含驗證碼
純手工編寫,希望對大家能有所幫助 首先編寫註冊和登入的基本頁面,分別命名為regist.jsp,login.jsp,另外再創乙個用於證明使用者已經登入的頁面提示,命名為main.jsp login.jsp主要 如下 regist.jsp 主要 如下 contenttype text html cha...
登入驗證碼C
一.新建乙個checkcode.aspx using system using system.data using system.configuration using system.collections using system.web using system.web.security usi...