android怎么实现注册登录程序
发表于:2024-11-27 作者:千家信息网编辑
千家信息网最后更新 2024年11月27日,这篇文章主要介绍"android怎么实现注册登录程序"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"android怎么实现注册登录程序"文章能帮助大家解决问题。
千家信息网最后更新 2024年11月27日android怎么实现注册登录程序
这篇文章主要介绍"android怎么实现注册登录程序"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"android怎么实现注册登录程序"文章能帮助大家解决问题。
注册页面:
user_register.xml:
" "
处理注册页面的Activity:
package com.example.foreveross.office; import java.io.IOException;import java.io.UnsupportedEncodingException;import java.util.ArrayList;import java.util.List; import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.NameValuePair;import org.apache.http.ParseException;import org.apache.http.client.ClientProtocolException;import org.apache.http.client.HttpClient;import org.apache.http.client.entity.UrlEncodedFormEntity;import org.apache.http.client.methods.HttpPost;import org.apache.http.impl.client.DefaultHttpClient;import org.apache.http.message.BasicNameValuePair;import org.apache.http.util.EntityUtils; import com.example.wenandroid.R;import android.app.Activity;import android.os.Bundle;import android.os.StrictMode;import android.view.View;import android.view.View.OnClickListener;import android.view.View.OnFocusChangeListener;import android.widget.Button;import android.widget.EditText;import android.widget.Toast; public class UserRegister extends Activity { private EditText register_username;private EditText register_passwd;private EditText reregister_passwd;private Button register_submit; @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy); setContentView(R.layout.user_register); register_username=(EditText)findViewById(R.id.register_username); register_passwd=(EditText)findViewById(R.id.register_passwd); reregister_passwd=(EditText)findViewById(R.id.reregister_passwd); register_submit=(Button)findViewById(R.id.register_submit); register_username.setOnFocusChangeListener(new OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { // TODO Auto-generated method stub if(!hasFocus){ if(register_username.getText().toString().trim().length()<4){ Toast.makeText(UserRegister.this, "用户名不能小于4个字符", Toast.LENGTH_SHORT).show(); } } } }); register_passwd.setOnFocusChangeListener(new OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { // TODO Auto-generated method stub if(!hasFocus){ if(register_passwd.getText().toString().trim().length()<6){ Toast.makeText(UserRegister.this, "密码不能小于8个字符", Toast.LENGTH_SHORT).show(); } } } }); reregister_passwd.setOnFocusChangeListener(new OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { // TODO Auto-generated method stub if(!hasFocus){ if(!reregister_passwd.getText().toString().trim().equals(register_passwd.getText().toString().trim())){ Toast.makeText(UserRegister.this, "两次密码输入不一致", Toast.LENGTH_SHORT).show(); } } } }); register_submit.setOnClickListener(new OnClickListener(){ @Override public void onClick(View v) { if(!checkEdit()){ return; } // TODO Auto-generated method stub String httpUrl="http://192.168.1.100:8080/web-test/register.jsp"; HttpPost httpRequest=new HttpPost(httpUrl); Listparams=new ArrayList (); params.add(new BasicNameValuePair("username",register_username.getText().toString().trim())); params.add(new BasicNameValuePair("password",register_passwd.getText().toString().trim())); HttpEntity httpentity = null; try { httpentity = new UrlEncodedFormEntity(params,"utf8"); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } httpRequest.setEntity(httpentity); HttpClient httpclient=new DefaultHttpClient(); HttpResponse httpResponse = null; try { httpResponse = httpclient.execute(httpRequest); } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } if(httpResponse.getStatusLine().getStatusCode()==200) { String strResult = null; try { strResult = EntityUtils.toString(httpResponse.getEntity()); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } Toast.makeText(UserRegister.this, strResult, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(UserRegister.this, "请求错误", Toast.LENGTH_SHORT).show(); } } }); } private boolean checkEdit(){ if(register_username.getText().toString().trim().equals("")){ Toast.makeText(UserRegister.this, "用户名不能为空", Toast.LENGTH_SHORT).show(); }else if(register_passwd.getText().toString().trim().equals("")){ Toast.makeText(UserRegister.this, "密码不能为空", Toast.LENGTH_SHORT).show(); }else if(!register_passwd.getText().toString().trim().equals(reregister_passwd.getText().toString().trim())){ Toast.makeText(UserRegister.this, "两次密码输入不一致", Toast.LENGTH_SHORT).show(); }else{ return true; } return false; } }
登录页面:
user_login.xml:
"
登录页面Activity:
package com.example.foreveross.office; import java.io.IOException;import java.io.UnsupportedEncodingException;import java.util.ArrayList;import java.util.List; import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apache.http.NameValuePair;import org.apache.http.ParseException;import org.apache.http.client.ClientProtocolException;import org.apache.http.client.HttpClient;import org.apache.http.client.entity.UrlEncodedFormEntity;import org.apache.http.client.methods.HttpPost;import org.apache.http.impl.client.DefaultHttpClient;import org.apache.http.message.BasicNameValuePair;import org.apache.http.util.EntityUtils; import com.example.wenandroid.R;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.os.StrictMode;import android.view.View;import android.view.View.OnClickListener;import android.view.View.OnFocusChangeListener;import android.widget.Button;import android.widget.EditText;import android.widget.Toast; public class UserLogin extends Activity implements OnClickListener {private EditText login_username;private EditText login_password;private Button user_login_button;private Button user_register_button; @Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy); setContentView(R.layout.user_login); initWidget(); } private void initWidget() { login_username=(EditText)findViewById(R.id.login_username); login_password=(EditText)findViewById(R.id.login_password); user_login_button=(Button)findViewById(R.id.user_login_button); user_register_button=(Button)findViewById(R.id.user_register_button); user_login_button.setOnClickListener(this); user_register_button.setOnClickListener(this); login_username.setOnFocusChangeListener(new OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { // TODO Auto-generated method stub if(!hasFocus){ String username=login_username.getText().toString().trim(); if(username.length()<4){ Toast.makeText(UserLogin.this, "用户名不能小于4个字符", Toast.LENGTH_SHORT); } } } }); login_password.setOnFocusChangeListener(new OnFocusChangeListener() { @Override public void onFocusChange(View v, boolean hasFocus) { // TODO Auto-generated method stub if(!hasFocus){ String password=login_password.getText().toString().trim(); if(password.length()<4){ Toast.makeText(UserLogin.this, "密码不能小于4个字符", Toast.LENGTH_SHORT); } } } }); } @Override public void onClick(View v) { // TODO Auto-generated method stub switch(v.getId()) { case R.id.user_login_button: if(checkEdit()) { login(); } break; case R.id.user_register_button: Intent intent2=new Intent(UserLogin.this,UserRegister.class); startActivity(intent2); break; } } private boolean checkEdit(){ if(login_username.getText().toString().trim().equals("")){ Toast.makeText(UserLogin.this, "用户名不能为空", Toast.LENGTH_SHORT).show(); }else if(login_password.getText().toString().trim().equals("")){ Toast.makeText(UserLogin.this, "密码不能为空", Toast.LENGTH_SHORT).show(); }else{ return true; } return false; } private void login(){ String httpUrl="http://192.168.1.102:8080/web-test/login.jsp"; HttpPost httpRequest=new HttpPost(httpUrl); Listparams=new ArrayList (); params.add(new BasicNameValuePair("username",login_username.getText().toString().trim())); params.add(new BasicNameValuePair("password",login_password.getText().toString().trim())); HttpEntity httpentity = null; try { httpentity = new UrlEncodedFormEntity(params,"utf8"); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } httpRequest.setEntity(httpentity); HttpClient httpclient=new DefaultHttpClient(); HttpResponse httpResponse = null; try { httpResponse = httpclient.execute(httpRequest); } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } if(httpResponse.getStatusLine().getStatusCode()==200) { String strResult = null; try { strResult = EntityUtils.toString(httpResponse.getEntity()); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } Toast.makeText(UserLogin.this, strResult, Toast.LENGTH_SHORT).show(); Intent intent=new Intent(UserLogin.this,IndexActivity.class); startActivity(intent); } else { Toast.makeText(UserLogin.this, "登录失败!", Toast.LENGTH_SHORT).show(); } }}
登录成功则跳转到IndexActivity.java
关于"android怎么实现注册登录程序"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注行业资讯频道,小编每天都会为大家更新不同的知识点。
登录
密码
字符
用户
用户名
程序
知识
页面
一致
行业
输入
不同
实用
成功
内容
册页
实用性
实际
文章
方法
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
大学生网络安全工程专业就业
收银机中的数据库如何导出来
无线网络安全模式栏修改不了
云服务器故障排查例子
博雅数据库预测江苏录取分数线
数据库的键和外键
辽源市工信局网络安全
服务器直接安装系统
河南信息化软件开发服务价格优惠
软件开发过程中最困难的环节
软件开发工程师要学习多久
网络安全保密都有哪些
加迁服务器
数据库怎么修改上传限制吗
sip网络技术
特种网络技术代理商
山东济南浪潮服务器哪家好
i型延伸网络安全防护设备
网络安全法注释版
用命令行创建oracle数据库
英雄联盟尝试连接服务器
数据库系统概什么软件
计算机应用技术网络安全论文
网络安全教育初中第一节
群主网络安全培训会
nas 服务器硬件
软件开发 试运行
北京读我网络技术有限公司电话
端口映射和虚拟服务器
网络安全公司哪家品质好