设为首页收藏本站
网站公告 | 这是第一条公告
     

 找回密码
 立即注册
缓存时间07 现在时间07 缓存数据 女人不要只算计自己喜欢的任何物品多少钱,要计算自己的青春还剩多少年;要懂得爱自己,舍得爱自己;不为别人,只为那个限量版的自己!

女人不要只算计自己喜欢的任何物品多少钱,要计算自己的青春还剩多少年;要懂得爱自己,舍得爱自己;不为别人,只为那个限量版的自己!

查看: 1141|回复: 4

Android使用SqLite实现登录注册功能流程详解

[复制链接]

  离线 

TA的专栏

  • 打卡等级:热心大叔
  • 打卡总天数:205
  • 打卡月天数:0
  • 打卡总奖励:3287
  • 最近打卡:2023-08-27 01:40:45
等级头衔

等級:晓枫资讯-上等兵

在线时间
0 小时

积分成就
威望
0
贡献
401
主题
391
精华
0
金钱
4515
积分
811
注册时间
2022-12-24
最后登录
2025-3-12

发表于 2024-5-26 21:19:59 | 显示全部楼层 |阅读模式
目录


  • 一、了解什么是Android Studio
  • 二、了解什么是sqlite
  • 三、创建项目文件
  • 四、创建活动文件和布局文件
  • 五、创建数据库连接数据库
  • 六、创建实体类实现注册功能
  • 七、实现登录功能
  • 八、总结

一、了解什么是Android Studio

Android Studio 是开发 Android 应用程序的官方 IDE,基于 Intellij IDEA。你可以从官网Android Studio下载最新版本的 Android Studio。在项目开始之前,请确认已经安装好Android Studio和完成相关的环境配置。

二、了解什么是sqlite

SQLite 是一个软件库,实现了自给自足的、无服务器的、零配置的、事务性的 SQL 数据库引擎。SQLite 是在世界上最广泛部署的 SQL 数据库引擎。他有诸多的优点。

  • 轻量级:SQLite是一个嵌入式数据库,它以一个独立的、自给自足的文件形式存在,不需要额外的服务器进程或配置。它的库文件大小较小,占用的系统资源较少,适合在资源有限的环境中使用。
  • 易于使用:SQLite提供了简单的API和易于理解的SQL查询语言,使得开发人员可以轻松地进行数据库操作。它使用标准的SQL语法,并提供了广泛的查询、插入、更新和删除功能。
  • 高性能:由于SQLite是一个本地文件数据库,它可以直接访问数据,而无需网络连接。这使得数据库操作的速度非常快,并且可以在本地执行复杂的查询和事务。
  • 跨平台支持:SQLite数据库可以在多个操作系统和平台上运行,包括Windows、Linux、Mac和移动设备平台(如Android和iOS)。这使得开发人员可以使用相同的数据库技术来开发跨平台的应用程序。
想要学习sqlite数据库的可以点击了解sqlite教程,本文不做过多介绍。

三、创建项目文件

打开Android Studio,创建一个新的空白项目。
1.png

接下来设置应用程序的基本信息,如应用程序名和包名,指定程序的安卓版本等。
2.png

设置完成后点击完成,完成一个空项目的创建。

四、创建活动文件和布局文件

在项目工程结构下的Java目录下的包含你项目名的软件包下新建活动文件。一般项目会自带有一个默认活动。(叫这个名字👉MainActivity)
3.png

右击软件包,创建一个名为RegisterActivity的活动,勾选第一个选项,创建完成活动后Android Studio会自动帮你创建对应的一个布局文件。
4.png

5.png

6.png

因为刚创建出来的布局文件是空白的,需要我们自己添加按钮或者文本,以下是一个布局页面的示例,可以根据自己需求更改。布局元素自行了解,不再过多叙述。
activity_register.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     android:orientation="vertical"
  8.     tools:context=".RegisterActivity">
  9.     <TextView
  10.         android:layout_width="wrap_content"
  11.         android:layout_height="wrap_content"
  12.         android:text="注册"
  13.         android:textSize="40dp"
  14.         android:layout_gravity="center"
  15.         />
  16.     <LinearLayout
  17.         android:layout_width="wrap_content"
  18.         android:layout_height="wrap_content"
  19.         android:layout_gravity="center"
  20.         android:layout_marginTop="50dp"
  21.         >
  22.         <TextView
  23.             android:layout_width="wrap_content"
  24.             android:layout_height="wrap_content"
  25.             android:text="用户名:"
  26.             android:textSize="20dp"
  27.             android:layout_marginRight="20dp"
  28.             android:layout_marginTop="3dp"
  29.             />
  30.         <EditText
  31.             android:id="@+id/rusername"
  32.             android:layout_width="200dp"
  33.             android:layout_height="wrap_content"
  34.             android:hint="请输入你的用户名"/>
  35.     </LinearLayout>
  36.     <LinearLayout
  37.         android:layout_width="wrap_content"
  38.         android:layout_height="wrap_content"
  39.         android:layout_gravity="center"
  40.         android:layout_marginTop="50dp"
  41.         >
  42.         <TextView
  43.             android:layout_width="wrap_content"
  44.             android:layout_height="wrap_content"
  45.             android:text="密码:"
  46.             android:textSize="20dp"
  47.             android:layout_marginRight="20dp"
  48.             android:layout_marginTop="3dp"
  49.             />
  50.         <EditText
  51.             android:id="@+id/rpassword"
  52.             android:layout_width="200dp"
  53.             android:layout_height="wrap_content"
  54.             android:hint="请入你的密码"/>
  55.     </LinearLayout>
  56.     <LinearLayout
  57.         android:layout_width="wrap_content"
  58.         android:layout_height="wrap_content"
  59.         android:layout_gravity="center"
  60.         android:layout_marginTop="50dp"
  61.         >
  62.         <TextView
  63.             android:layout_width="wrap_content"
  64.             android:layout_height="wrap_content"
  65.             android:text="电话:"
  66.             android:textSize="20dp"
  67.             android:layout_marginRight="20dp"
  68.             android:layout_marginTop="3dp"
  69.             />
  70.         <EditText
  71.             android:id="@+id/rphone"
  72.             android:layout_width="200dp"
  73.             android:layout_height="wrap_content"
  74.             android:hint="请输入你的电话"/>
  75.     </LinearLayout>
  76.     <LinearLayout
  77.         android:layout_width="wrap_content"
  78.         android:layout_height="wrap_content"
  79.         android:layout_gravity="center"
  80.         android:layout_marginTop="50dp"
  81.         >
  82.         <TextView
  83.             android:layout_width="wrap_content"
  84.             android:layout_height="wrap_content"
  85.             android:text="邮箱:"
  86.             android:textSize="20dp"
  87.             android:layout_marginRight="20dp"
  88.             android:layout_marginTop="3dp"
  89.             />
  90.         <EditText
  91.             android:id="@+id/remil"
  92.             android:layout_width="200dp"
  93.             android:layout_height="wrap_content"
  94.             android:hint="请输入你的邮箱"/>
  95.     </LinearLayout>
  96.     <Button
  97.         android:onClick="register"
  98.         android:id="@+id/mregister"
  99.         android:layout_gravity="center"
  100.         android:layout_marginTop="40dp"
  101.         android:layout_width="200dp"
  102.         android:layout_height="wrap_content"
  103.         android:textSize="20dp"
  104.         android:text="注册"
  105.         />
  106.     <Button android:id="@+id/fh" android:onClick="gobak"
  107.         android:layout_gravity="center"
  108.         android:layout_marginTop="40dp"
  109.         android:layout_width="200dp"
  110.         android:layout_height="wrap_content"
  111.         android:textSize="20dp"
  112.         android:text="返回登录"
  113.         />
  114. </LinearLayout>
复制代码
注册页面有了当然少不了登录页面,用上述的方法创建一个登录页面,同样给出一个示例页面。
login_activity.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     android:orientation="vertical"
  8.     tools:context=".LoginActivity">
  9.     <TextView
  10.         android:layout_width="wrap_content"
  11.         android:layout_height="wrap_content"
  12.         android:layout_gravity="center"
  13.         android:text="登录"
  14.         android:textSize="50dp"/>
  15.     <LinearLayout
  16.         android:layout_width="wrap_content"
  17.         android:layout_height="wrap_content"
  18.         android:layout_gravity="center"
  19.         android:layout_marginTop="50dp"
  20.         >
  21.         <TextView
  22.             android:layout_width="wrap_content"
  23.             android:layout_height="wrap_content"
  24.             android:text="用户名:"
  25.             android:textSize="20dp"
  26.             android:layout_marginRight="20dp"
  27.             android:layout_marginTop="3dp"
  28.             />
  29.         <EditText
  30.             android:id="@+id/lusername"
  31.             android:layout_width="200dp"
  32.             android:layout_height="wrap_content"
  33.             android:hint="请输入你的用户名"/>
  34.     </LinearLayout>
  35.     <LinearLayout
  36.         android:layout_width="wrap_content"
  37.         android:layout_height="wrap_content"
  38.         android:layout_gravity="center"
  39.         android:layout_marginTop="50dp"
  40.         >
  41.         <TextView
  42.             android:layout_width="wrap_content"
  43.             android:layout_height="wrap_content"
  44.             android:text="密码:"
  45.             android:textSize="20dp"
  46.             android:layout_marginRight="20dp"
  47.             android:layout_marginTop="3dp"
  48.             />
  49.         <EditText
  50.             android:id="@+id/lpassword"
  51.             android:layout_width="200dp"
  52.             android:layout_height="wrap_content"
  53.             android:hint="请输入你的密码"/>
  54.     </LinearLayout>
  55.     <LinearLayout
  56.         android:layout_width="wrap_content"
  57.         android:layout_height="wrap_content"
  58.         android:layout_marginTop="300dp"
  59.         >
  60.         <Button
  61.             android:id="@+id/login"
  62.             android:layout_width="150dp"
  63.             android:layout_height="55dp"
  64.             android:layout_marginLeft="30dp"
  65.             android:textSize="20dp"
  66.             android:text="登录"></Button>
  67.         <Button
  68.             android:id="@+id/register"
  69.             android:onClick="GoRegister"
  70.             android:layout_width="150dp"
  71.             android:layout_height="55dp"
  72.             android:textSize="20dp"
  73.             android:layout_marginLeft="60dp"
  74.             android:text="注册"
  75.             >
  76.         </Button>
  77.     </LinearLayout>
  78. </LinearLayout>
复制代码
五、创建数据库连接数据库

在活动目录包下创建一个名为MySQLiteOpenHelper的java类,注意是创建Java类不是活动类。并且继承SQLiteOpenHelper,后续我们在这个类中实现数据库的相关操作。
7.png

MySQLiteOpenHelper.java
  1. package com.example.androidword;
  2. import android.content.Context;
  3. import android.database.sqlite.SQLiteDatabase;
  4. import android.database.sqlite.SQLiteOpenHelper;
  5. import androidx.annotation.Nullable;
  6. public class MySQLiteOpenHelper extends SQLiteOpenHelper {
  7.     //数据库名字
  8.     private static final String DB_NAME = "User.db";
  9.     //创建用户表
  10.     private static final String CREATE_USER = "create table user(id integer primary key autoincrement," +
  11.             "username varchar(30)," +
  12.             "password varchar(30)," +
  13.             "phone varchar(30)," +
  14.             "emil varchar(30))";
  15.     //运行程序时,Android Studio帮你创建数据库,只会执行一次
  16.     public MySQLiteOpenHelper(@Nullable Context context) {
  17.         super(context,DB_NAME,null,1);
  18.     }
  19.     //创建数据表
  20.     @Override
  21.     public void onCreate(SQLiteDatabase sqLiteDatabase) {
  22.         sqLiteDatabase.execSQL(CREATE_USER);
  23.     }
  24.     @Override
  25.     public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {
  26.     }
  27. }
复制代码
六、创建实体类实现注册功能

在活动目录包下新建User类,用它当作我们此次项目的实体类,也就是数据库表中的字段。
User.java
  1. package com.example.androidword;
  2. //创建user类,并添加属性和构造方法、get、set方法
  3. public class User {
  4.     public String username;
  5.     public String password;
  6.     public String phone;
  7.     public String emil;
  8.     public User(){}
  9.     public User(String username, String password, String phone, String emil) {
  10.         this.username = username;
  11.         this.password = password;
  12.         this.phone = phone;
  13.         this.emil = emil;
  14.     }
  15.     public String getUsername() {
  16.         return username;
  17.     }
  18.     public void setUsername(String username) {
  19.         this.username = username;
  20.     }
  21.     public String getPassword() {
  22.         return password;
  23.     }
  24.     public void setPassword(String password) {
  25.         this.password = password;
  26.     }
  27.     public String getPhone() {
  28.         return phone;
  29.     }
  30.     public void setPhone(String phone) {
  31.         this.phone = phone;
  32.     }
  33.     public String getEmil() {
  34.         return emil;
  35.     }
  36.     public void setEmil(String emil) {
  37.         this.emil = emil;
  38.     }
  39. }
复制代码
接着我们去MySQLiteOpenHelper类中添加注册的方法,即把我们输入的数据保存在数据库中(插入)。
  1.     public long register(User u){
  2.         SQLiteDatabase db = getWritableDatabase();
  3.         ContentValues cv = new ContentValues();
  4.         cv.put("username ",u.getUsername());
  5.         cv.put("password",u.getPassword());
  6.         cv.put("phone",u.getPhone());
  7.         cv.put("emil",u.getEmil());
  8.         long users = db.insert("user",null,cv);
  9.         return users;
  10.     }
复制代码
在RegisterActivity活动类中我们还要编写相关的后台代码,如获取输入框,注册按钮等。
  1. package com.example.androidword;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.Button;
  7. import android.widget.EditText;
  8. import android.widget.Toast;
  9. public class RegisterActivity extends AppCompatActivity implements View.OnClickListener {
  10.     @Override
  11.     protected void onCreate(Bundle savedInstanceState) {
  12.         mySQLiteOpenHelper = new MySQLiteOpenHelper(this);
  13.         super.onCreate(savedInstanceState);
  14.         setContentView(R.layout.activity_register);
  15.         //初始化获取的布局元素
  16.         find();
  17.     }
  18.     //获取注册按钮,预先定义,下方输入框同理
  19.     private Button register;
  20.     private EditText username,password,phone,emil;
  21.     //使用MySQLiteOpenHelper类中的方法
  22.     private MySQLiteOpenHelper mySQLiteOpenHelper;
  23.     //控制注册按钮点击完后不给点击了
  24.     boolean flag = false;
  25.     //跳转回登录页面
  26.     public void gobak(View view){
  27.         Intent gl = new Intent(RegisterActivity.this,LoginActivity.class);
  28.         startActivity(gl);
  29.     }
  30.     //初始化获取的布局元素
  31.     public void find(){
  32.         username = findViewById(R.id.rusername);
  33.         password = findViewById(R.id.rpassword);
  34.         phone = findViewById(R.id.rphone);
  35.         emil = findViewById(R.id.remil);
  36.         register = findViewById(R.id.mregister);
  37.         register.setOnClickListener(this);
  38.     }
  39.     //注册逻辑实现
  40.     public void register(){
  41.         String ru = username.getText().toString();
  42.         String rps = password.getText().toString();
  43.         String rph = phone.getText().toString();
  44.         String rem = emil.getText().toString();
  45.         User user = new User(ru,rps,rph,rem);
  46.         if(ru.equals("")){
  47.             Toast.makeText(this, "账号不能为空!", Toast.LENGTH_SHORT).show();
  48.         } else if (rps.equals("")) {
  49.             Toast.makeText(this, "密码不能为空!", Toast.LENGTH_SHORT).show();
  50.         } else if (rph.equals("")) {
  51.             Toast.makeText(this, "电话不能为空!", Toast.LENGTH_SHORT).show();
  52.         }else if(rem.equals("")){
  53.             Toast.makeText(this, "邮箱不能为空!", Toast.LENGTH_SHORT).show();
  54.         }else{
  55.             long r1 = mySQLiteOpenHelper.register(user);
  56.             register.setEnabled(false);
  57.             register.setTextColor(0xFFD0EFC6);
  58.             if(r1!=-1){
  59.                 Toast.makeText(this, "注册成功", Toast.LENGTH_SHORT).show();
  60.             }else{
  61.                 Toast.makeText(this, "注册失败!", Toast.LENGTH_SHORT).show();
  62.             }
  63.         }
  64.     }
  65.     //监听按钮点击事件
  66.     @Override
  67.     public void onClick(View view) {
  68.         switch (view.getId()){
  69.             case R.id.mregister:
  70.                 register();
  71.                 break;
  72.         }
  73.     }
  74.     @Override
  75.     public void onPointerCaptureChanged(boolean hasCapture) {
  76.         super.onPointerCaptureChanged(hasCapture);
  77.     }
  78. }
复制代码
运行程序,观察数据库是否成功创建,注册信息能否添加进数据库。
8.png

9.png

到此注册功能已经基本实现,更多的逻辑判断可以自行添加。接下来实现登录功能。

七、实现登录功能

MySQLiteOpenHelper类中添加登录的方法和根据用户名找到当前用户的方法。
  1. //登录方法实现
  2.     public boolean login(String username,String password){
  3.         SQLiteDatabase db = getWritableDatabase();
  4.         boolean result = false;
  5.         Cursor users = db.query("user", null, "username like?", new String[]{username}, null, null, null);
  6.         if(users!=null){
  7.             while (users.moveToNext()){
  8.                 @SuppressLint("Range") String username1 = users.getString(users.getColumnIndex("username"));
  9.                 Log.i("users", "login: "+username1);
  10.                 String password1 = users.getString(2);
  11.                 Log.i("users", "login: "+password1);
  12.                 result = password1.equals(password);
  13.                 return result;
  14.             }
  15.         }
  16.         return false;
  17.     }
  18.     //根据用户名查找当前登录用户信息
  19.     public User select(String username){
  20.         SQLiteDatabase db = getWritableDatabase();
  21.         User SelectUser = new User();
  22.         Cursor user = db.query("user", new String[]{"username", "phone", "emil"}, "username=?", new String[]{username}, null, null, null);
  23.         while(user.moveToNext()){
  24.             @SuppressLint("Range") String uname =user.getString(user.getColumnIndex("username"));
  25.             @SuppressLint("Range") String phone = user.getString(user.getColumnIndex("phone"));
  26.             @SuppressLint("Range") String emil = user.getString(user.getColumnIndex("emil"));
  27.             SelectUser.setUsername(uname);
  28.             SelectUser.setPhone(phone);
  29.             SelectUser.setEmil(emil);
  30.         }
  31.         user.close();
  32.         return SelectUser;
  33.     }
复制代码
接下来同上一步,到LoginActivity活动类中找到登录按钮,输入框等布局元素,并实现登录功能。
  1. package com.example.androidword;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.view.View;
  6. import android.widget.Button;
  7. import android.widget.EditText;
  8. import android.widget.Toast;
  9. public class LoginActivity extends AppCompatActivity implements View.OnClickListener {
  10.     private Button register,login;
  11.     private EditText username,password;
  12.     private MySQLiteOpenHelper mySQLiteOpenHelper;
  13.     @Override
  14.     protected void onCreate(Bundle savedInstanceState) {
  15.         mySQLiteOpenHelper = new MySQLiteOpenHelper(this);
  16.         super.onCreate(savedInstanceState);
  17.         setContentView(R.layout.activity_login);
  18.         find();
  19.     }
  20.     public void find(){
  21.         login = findViewById(R.id.login);
  22.         register = findViewById(R.id.register);
  23.         username = findViewById(R.id.lusername);
  24.         password = findViewById(R.id.lpassword);
  25.         login.setOnClickListener(this);
  26.         register.setOnClickListener(this);
  27.     }
  28.     @Override
  29.     public void onClick(View view) {
  30.         int id = view.getId();
  31.         switch (id){
  32.             case R.id.login:
  33.                 String n = username.getText().toString();
  34.                 String p = password.getText().toString();
  35.                 if(n.equals("")){
  36.                     Toast.makeText(this, "请输入账号", Toast.LENGTH_SHORT).show();
  37.                 }else if(p.equals("")){
  38.                     Toast.makeText(this, "请输入密码", Toast.LENGTH_SHORT).show();
  39.                 }else{
  40.                     boolean login = mySQLiteOpenHelper.login(n, p);
  41.                     if(login){
  42.                         Toast.makeText(this, "登录成功!", Toast.LENGTH_SHORT).show();
  43.                         User select = mySQLiteOpenHelper.select(n);
  44.                         Intent home = new Intent(LoginActivity.this,MainActivity.class);
  45.                         Bundle bundle = new Bundle();
  46.                         bundle.putString("username",select.username);
  47.                         bundle.putString("emil",select.emil);
  48.                         bundle.putString("phone",select.phone);
  49.                         home.putExtras(bundle);
  50.                         username.setText("");
  51.                         password.setText("");
  52.                         startActivity(home);
  53.                     }else {
  54.                         Toast.makeText(this, "账号或密码错误,请重新输入", Toast.LENGTH_SHORT).show();
  55.                         password.setText("");
  56.                     }
  57.                 }
  58.                 break;
  59.             case R.id.register:
  60.                 Intent re = new Intent(LoginActivity.this, RegisterActivity.class);
  61.                 startActivity(re);
  62.                 break;
  63.         }
  64.     }
  65.     @Override
  66.     public void onPointerCaptureChanged(boolean hasCapture) {
  67.         super.onPointerCaptureChanged(hasCapture);
  68.     }
  69. }
复制代码
重新启动应用,观察登录功能是否已经实现,上述例子中我添加了一个校验通过跳转另一个页面的方法来检验是否登录成功。
10.png

11.png

到此,我们已经实现了一个简单的注册和登录功能。

八、总结

学习Android Studio是学习Android应用开发的重要一步。下面是一个Android Studio课程学习的总结:
1. 熟悉界面和基本功能:开始学习之前,熟悉Android Studio的用户界面和各个功能区域。了解项目结构、编辑器、调试工具等基本功能,掌握常用的快捷键和操作技巧。
2. 学习Java或Kotlin语言:Android Studio主要使用Java或Kotlin语言进行开发。学习Java或Kotlin的基本语法、面向对象编程概念和常用的API。
3. 掌握Android框架和组件:了解Android的基本组件和框架,如Activity、Fragment、Intent、布局、资源管理等。学习如何创建和管理这些组件,以及它们之间的交互。
4. 学习布局设计和UI开发:掌握Android布局设计,使用XML和代码创建用户界面。了解常用的布局类型(如线性布局、相对布局、帧布局等),并学习如何使用UI控件(如TextView、Button、ImageView等)和样式化组件。
5. 数据存储和处理:学习如何在Android应用中存储和处理数据。了解SQLite数据库数据存储技术,以及与网络通信、数据解析和持久化相关的技术。
以上就是Android使用SqLite实现登录注册功能流程详解的详细内容,更多关于Android SqLite登录注册的资料请关注晓枫资讯其它相关文章!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
晓枫资讯-科技资讯社区-免责声明
免责声明:以上内容为本网站转自其它媒体,相关信息仅为传递更多信息之目的,不代表本网观点,亦不代表本网站赞同其观点或证实其内容的真实性。
      1、注册用户在本社区发表、转载的任何作品仅代表其个人观点,不代表本社区认同其观点。
      2、管理员及版主有权在不事先通知或不经作者准许的情况下删除其在本社区所发表的文章。
      3、本社区的文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,举报反馈:点击这里给我发消息进行删除处理。
      4、本社区一切资源不代表本站立场,并不代表本站赞同其观点和对其真实性负责。
      5、以上声明内容的最终解释权归《晓枫资讯-科技资讯社区》所有。
http://bbs.yzwlo.com 晓枫资讯--游戏IT新闻资讯~~~

  离线 

TA的专栏

等级头衔

等級:晓枫资讯-列兵

在线时间
0 小时

积分成就
威望
0
贡献
0
主题
0
精华
0
金钱
19
积分
18
注册时间
2022-12-26
最后登录
2022-12-26

发表于 2024-7-8 03:03:58 | 显示全部楼层
感谢楼主分享。
http://bbs.yzwlo.com 晓枫资讯--游戏IT新闻资讯~~~

  离线 

TA的专栏

  • 打卡等级:无名新人
  • 打卡总天数:1
  • 打卡月天数:0
  • 打卡总奖励:7
  • 最近打卡:2024-08-09 15:28:31
等级头衔

等級:晓枫资讯-列兵

在线时间
0 小时

积分成就
威望
0
贡献
0
主题
0
精华
0
金钱
19
积分
4
注册时间
2024-4-6
最后登录
2024-8-9

发表于 2024-9-25 16:15:56 | 显示全部楼层
感谢楼主,顶。
http://bbs.yzwlo.com 晓枫资讯--游戏IT新闻资讯~~~

  离线 

TA的专栏

等级头衔

等級:晓枫资讯-列兵

在线时间
0 小时

积分成就
威望
0
贡献
0
主题
0
精华
0
金钱
17
积分
14
注册时间
2022-12-24
最后登录
2022-12-24

发表于 2024-10-27 15:03:01 | 显示全部楼层
顶顶更健康!!!
http://bbs.yzwlo.com 晓枫资讯--游戏IT新闻资讯~~~

  离线 

TA的专栏

  • 打卡等级:即来则安
  • 打卡总天数:24
  • 打卡月天数:0
  • 打卡总奖励:269
  • 最近打卡:2025-04-22 00:33:26
等级头衔

等級:晓枫资讯-列兵

在线时间
0 小时

积分成就
威望
0
贡献
0
主题
0
精华
0
金钱
312
积分
50
注册时间
2023-2-14
最后登录
2025-4-22

发表于 2025-3-18 15:09:37 | 显示全部楼层
路过,支持一下
http://bbs.yzwlo.com 晓枫资讯--游戏IT新闻资讯~~~
严禁发布广告,淫秽、色情、赌博、暴力、凶杀、恐怖、间谍及其他违反国家法律法规的内容。!晓枫资讯-社区
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

1楼
2楼
3楼
4楼
5楼

手机版|晓枫资讯--科技资讯社区 本站已运行

CopyRight © 2022-2025 晓枫资讯--科技资讯社区 ( BBS.yzwlo.com ) . All Rights Reserved .

晓枫资讯--科技资讯社区

本站内容由用户自主分享和转载自互联网,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。

如有侵权、违反国家法律政策行为,请联系我们,我们会第一时间及时清除和处理! 举报反馈邮箱:点击这里给我发消息

Powered by Discuz! X3.5

快速回复 返回顶部 返回列表