⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test.java

📁 实现从用户登陆页面到用户信息页面的跳转。完成数据库连接
💻 JAVA
字号:
package cn.com.yunda.serviceImpl;

import java.util.ArrayList;

import cn.com.yunda.vo.StudentInfo;

/**
 *
 *@author baiwei
 *@version 2008-11-7 下午04:41:58
 */
public class Test {

	public static void main(String[] args){
		
		StudentInfo stuInfo=new StudentInfo();
		stuInfo.setSid("s16");
		
		DeleteStudentServiceImpl delStuSI=new DeleteStudentServiceImpl();
		delStuSI.deleteStudent(stuInfo);
		DisplayStuInfoServiceImpl disStuSI=new DisplayStuInfoServiceImpl();
		
		ArrayList<StudentInfo> stuList=disStuSI.getOneStudent("s01");
		System.out.println(stuList.get(0).getSname());
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -