Android Studio 实现实现学生信息的查询 -源代码 三(Servlet + 连接MySql数据库) (JSON通信)

先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7

深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
img
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以添加V获取:vip204888 (备注Android)
img

正文

INSERT INTO users VALUES (‘8’, ‘admin123’, ‘admin’, ‘123’, ‘45’, 0x3132323232323232323232);

INSERT INTO users VALUES (‘9’, ‘admin123’, ‘admin’, ‘123’, ‘45’, 0x3132323232323232323232);

INSERT INTO users VALUES (‘10’, ‘admin1232’, ‘admin’, ‘123’, ‘45’, 0x3132323232323232323232);

INSERT INTO users VALUES (‘11’, ‘admin222’, ‘222’, ‘2222’, ‘222’, 0x3232323232323232323232);

INSERT INTO users VALUES (‘12’, ‘admin123’, ‘123’, ‘1212’, ‘22’, 0x32313231323232323232);

INSERT INTO users VALUES (‘13’, ‘admin’, ‘admin’, ‘2121’, ‘33’, 0x3333333333333333333333);

INSERT INTO users VALUES (‘14’, ‘123121212’, ‘12321212’, ‘123’, ‘12’, 0x3132333333333333333333);

二、Android端代码


1、引入JSON相关的驱动包

切换工程目录

在这里插入图片描述

添加jar

在这里插入图片描述

切换回Android工程

在这里插入图片描述

2、创建Student的实体类

在这里插入图片描述

在这里插入图片描述

package com.example.application01.entity;

public class Student {

private int id;

private String name;

private int age;

private String address;

public Student() {

}

public Student(int id, String name, int age, String address) {

this.id = id;

this.name = name;

this.age = age;

this.address = address;

}

public int getId() {

return id;

}

public void setId(int id) {

this.id = id;

}

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public int getAge() {

return age;

}

public void setAge(int age) {

this.age = age;

}

public String getAddress() {

return address;

}

public void setAddress(String address) {

this.address = address;

}

}

3、创建跳转显示学生信息的页面

在这里插入图片描述

在这里插入图片描述

点击Finish

完善页面信息布局

在这里插入图片描述

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app=“http://schemas.android.com/apk/res-auto”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

tools:context=“.Student_List”>

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:orientation=“vertical”

tools:layout_editor_absoluteX=“76dp”

tools:layout_editor_absoluteY=“98dp”>

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:padding=“20dp”

android:orientation=“horizontal”>

<EditText

android:id=“@+id/stuname”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:ems=“10”

android:inputType=“textPersonName”

/>

<Button

android:id=“@+id/buttonStu”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“查询” />

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:padding=“20dp”

android:orientation=“horizontal”>

<ListView

android:id=“@+id/stulist”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”>

</androidx.constraintlayout.widget.ConstraintLayout>

在这里插入图片描述

4、修改MainActivity当中的登录成功方法,设置其跳转到上述创建的页面当中

在这里插入图片描述

全部代码

package com.example.application01;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;

import android.os.Bundle;

import android.os.Handler;

import android.os.Message;

import android.view.View;

import android.widget.EditText;

import android.widget.Toast;

import com.example.application01.dao.UserDao;

import com.example.application01.utils.PostUtil;

import java.io.UnsupportedEncodingException;

import java.net.URLEncoder;

public class MainActivity extends AppCompatActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

}

public void reg(View view){

startActivity(new Intent(getApplicationContext(),RegisterActivity.class));

}

public void login(View view){

EditText EditTextname = (EditText)findViewById(R.id.name);

EditText EditTextpassword = (EditText)findViewById(R.id.password);

new Thread(){

@Override

public void run() {

String data=“”;

try {

data = “name=”+ URLEncoder.encode(EditTextname.getText().toString(), “UTF-8”)+

“&password=”+ URLEncoder.encode(EditTextpassword.getText().toString(), “UTF-8”);

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

String request = PostUtil.Post(“LoginServlet”,data);

int msg = 0;

if(request.equals(“成功”)){

msg = 1;

}

hand1.sendEmptyMessage(msg);

}

}.start();

}

final Handler hand1 = new Handler()

{

@Override

public void handleMessage(Message msg) {

if(msg.what == 1)

{

//Toast.makeText(getApplicationContext(),“登录成功”,Toast.LENGTH_LONG).show();

startActivity(new Intent(getApplicationContext(),Student_List.class));

}

else

{

Toast.makeText(getApplicationContext(),“登录失败”,Toast.LENGTH_LONG).show();

}

}

};

}

5、创建一个XML页面用于显示ListView内部的东西

student_list.xml

在这里插入图片描述

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app=“http://schemas.android.com/apk/res-auto”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:padding=“20dp”

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:orientation=“horizontal”>

<TextView

android:id=“@+id/id”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“id” />

<TextView

android:id=“@+id/name”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“姓名” />

<TextView

android:id=“@+id/age”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“年龄” />

<TextView

android:id=“@+id/address”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“地址” />

5、创建StudentAdapter

在这里插入图片描述

package com.example.application01;

import android.content.Context;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.widget.BaseAdapter;

import android.widget.TextView;

import com.example.application01.entity.Student;

import java.util.ArrayList;

public class StudentAdapter extends BaseAdapter {

ArrayList studatalist = new ArrayList<>();

private Context mContext;

public StudentAdapter(ArrayList sData, Context mContext) {

this.sData = sData;

this.mContext = mContext;

}

@Override

public int getCount() {

return sData.size();

}

@Override

public Object getItem(int position) {

return null;

}

@Override

public long getItemId(int position) {

return position;

}

@Override

public View getView(int position, View convertView, ViewGroup parent) {

convertView = LayoutInflater.from(mContext).inflate(R.layout.student_list,null);

TextView txt_id = (TextView) convertView.findViewById(R.id.id);

TextView txt_name = (TextView) convertView.findViewById(R.id.name);

TextView txt_age = (TextView) convertView.findViewById(R.id.age);

TextView txt_address = (TextView) convertView.findViewById(R.id.address);

txt_id.setText(sData.get(position).getId()+“”);

txt_name.setText(sData.get(position).getName());

txt_age.setText(sData.get(position).getAge()+“”);

txt_address.setText(sData.get(position).getAddress());

return convertView;

}

}

6、在Student_List当中实现点击搜索,并显示对应是学生列表

(1)修改activity_student_list.xnl当中的按钮

添加onClick

在这里插入图片描述

(2)在Student_List当中完善对应的方法

在这里插入图片描述

package com.example.application01;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;

import android.os.Handler;

import android.os.Message;

import android.view.View;

import android.widget.EditText;

import android.widget.ListView;

import android.widget.Toast;

import com.example.application01.entity.Student;

import com.example.application01.utils.PostUtil;

import org.json.JSONArray;

import org.json.JSONObject;

import java.io.UnsupportedEncodingException;

import java.net.URLEncoder;

import java.util.ArrayList;

public class Student_List extends AppCompatActivity {

EditText editTextname = null;

ArrayList studatalist = null;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_student__list);

editTextname = findViewById(R.id.stuname);

}

public void findALLStudent(View view){

new Thread() {

public void run() {

if(studatalist != null){

studatalist.clear();

}

String data=“”;

try {

data = “name=”+ URLEncoder.encode(editTextname.getText().toString(), “UTF-8”);

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

String stuJson= PostUtil.Post(“studentServlet”,data);

try {

JSONArray jsonArray = new JSONArray(stuJson);

for(int i = 0;i < jsonArray.length();i++){

JSONObject jsonObject = (JSONObject) jsonArray.get(i);

Student student = new Student();

student.setId(jsonObject.getInt(“id”));

student.setName(jsonObject.getString(“name”));

student.setAge(jsonObject.getInt(“age”));

student.setAddress(jsonObject.getString(“address”));

studatalist.add(student);

}

} catch (org.json.JSONException e) {

e.printStackTrace();

}

/*

*/

hand.sendEmptyMessage(1);

}

}.start();

}

Handler hand=new Handler(){

@Override

public void handleMessage(Message msg) {

最后说一下我的学习路线

其实很简单就下面这张图,含概了Android所有需要学的知识点,一共8大板块:

  1. 架构师筑基必备技能
  2. Android框架体系架构(高级UI+FrameWork源码)
  3. 360°Androidapp全方位性能调优
  4. 设计思想解读开源框架
  5. NDK模块开发
  6. 移动架构师专题项目实战环节
  7. 移动架构师不可不学习微信小程序
  8. 混合开发的flutter

Android学习的资料

我呢,把上面八大板块的分支都系统的做了一份学习系统的资料和视频,大概就下面这些,我就不全部写出来了,不然太长了影响大家的阅读。

330页PDF Android学习核心笔记(内含上面8大板块)

Android学习的系统对应视频

总结

我希望通过我自己的学习方法来帮助大家去提升技术:

  • 1、多看书、看源码和做项目,平时多种总结

  • 2、不能停留在一些基本api的使用上,应该往更深层次的方向去研究,比如activity、view的内部运行机制,比如Android内存优化,比如aidl,比如JNI等,并不仅仅停留在会用,而要通过阅读源码,理解其实现原理

  • 3、同时对架构是有一定要求的,架构是抽象的,但是设计模式是具体的,所以一定要加强下设计模式的学习

  • 4、android的方向也很多,高级UI,移动架构师,数据结构与算法和音视频FFMpeg解码,如果你对其中一项比较感兴趣,就大胆的进阶吧!

希望大家多多点赞,转发,评论加关注,你们的支持就是我继续下去的动力!加油!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注Android)
img

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

方位性能调优**
4. 设计思想解读开源框架
5. NDK模块开发
6. 移动架构师专题项目实战环节
7. 移动架构师不可不学习微信小程序
8. 混合开发的flutter

[外链图片转存中…(img-X5CKNRlY-1713656656847)]

Android学习的资料

我呢,把上面八大板块的分支都系统的做了一份学习系统的资料和视频,大概就下面这些,我就不全部写出来了,不然太长了影响大家的阅读。

330页PDF Android学习核心笔记(内含上面8大板块)

[外链图片转存中…(img-xeUtFLPC-1713656656847)]

Android学习的系统对应视频

总结

我希望通过我自己的学习方法来帮助大家去提升技术:

  • 1、多看书、看源码和做项目,平时多种总结

  • 2、不能停留在一些基本api的使用上,应该往更深层次的方向去研究,比如activity、view的内部运行机制,比如Android内存优化,比如aidl,比如JNI等,并不仅仅停留在会用,而要通过阅读源码,理解其实现原理

  • 3、同时对架构是有一定要求的,架构是抽象的,但是设计模式是具体的,所以一定要加强下设计模式的学习

  • 4、android的方向也很多,高级UI,移动架构师,数据结构与算法和音视频FFMpeg解码,如果你对其中一项比较感兴趣,就大胆的进阶吧!

希望大家多多点赞,转发,评论加关注,你们的支持就是我继续下去的动力!加油!

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注Android)
[外链图片转存中…(img-5gncutw3-1713656656848)]

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值