IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 大数据 -> JavaWeb实验作业 -> 正文阅读

[大数据]JavaWeb实验作业

实验要求:

JSP版Helloworld
简单输出:Helloworld即可
Servlet版Helloworld
简单输出:Helloworld即可
连接数据库测试
参考:DBConn.jsp
用循环连续输出三个你好,字体从小变大
JSP版与Servlet版都要完成

JSP版Helloworld

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<h1>Hello,world!</h1>
</body>
</html>

在这里插入图片描述

Servlet版Helloworld

package com.bnuz;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class HelloWorld
 */
@WebServlet("/HelloWorld")
public class HelloWorld extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public HelloWorld() {
        super();
        // TODO Auto-generated constructor stub
    }

	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
			response.getWriter().append("<h1>HelloWorld</h1>");
	}

	/**
	 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		doGet(request, response);
	}

}

在这里插入图片描述

连接数据库测试

<%@ page language="java" contentType="text/html; charset=GB2312"    pageEncoding="GB2312"%>

<%@ page import="java.sql.*"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312">
<title>Database Connection Test</title>
</head>
<body>
<%
	try
	{
		//载入JDBC驱动程序(这里使用的是sqlserver,你可以根据自己的数据库来修改)
		Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();
		
		//定义连接URL、数据用户及密码
		String url = "jdbc:sqlserver://localhost:1433;databaseName=J2EE;integratedSecurity=true;";
		String dbUser = "sa";
		String dbPassword = "4580796";
		
		//建立连接
		Connection conn= DriverManager.getConnection(url,dbUser,dbPassword);
		
		//创建Statement对象(声明对象)
		Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);
		
		String sql="select * from T_Student";
		
		//执行查询或更新数据
		ResultSet rs = stmt.executeQuery(sql);
		
		//处理结果
		while(rs.next()) 
		{
			int id = rs.getInt("id");
			String name = rs.getString("name");
			String school = rs.getString("school");
			
			out.println("Id="+ id + " Name="+ name + " School="+ school + "<BR/>");
		}
	
		//关闭连接
		//rs.close();
		//stmt.close();
		//关闭连接的同时还会同时关闭对应的Statement和ResultSet对象
		conn.close();
		
	}catch(ClassNotFoundException ex)
	{
		out.println("加载类失败:"+ex.getMessage());
		
	}catch(SQLException ex2)
	{
		out.println("执行SQL出错:"+ ex2.getMessage());
	}
%>
</body>
</html>

根据以上代码建立相关数据库及表。
如果出现加载类失败的问题,可能是由于连接数据库的jar包没有导入tomcat安装目录下的lib文件夹。或者该项目没有引入连接数据库的jar包。
在这里插入图片描述

用循环连续输出三个你好,字体从小变大

JSP:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<% for(int i = 3; i >=1; i--)
	{
		out.print("<h"+i+">"+"你好"+"</h"+i+">");
	}
		%>
</body>
</html>

在这里插入图片描述
Servlet版:

package com.bnuz;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class HelloWorld
 */
@WebServlet("/HelloWorld")
public class HelloWorld extends HttpServlet {
	private static final long serialVersionUID = 1L;
       
    /**
     * @see HttpServlet#HttpServlet()
     */
    public HelloWorld() {
        super();
        // TODO Auto-generated constructor stub
    }

	/**
	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		for(int i = 3; i >=1; i--) {
			response.getWriter().append("<h"+i+">"+"HelloWorld"+"</h"+i+">");
		}
		
	}

	/**
	 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
	 */
	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		// TODO Auto-generated method stub
		doGet(request, response);
	}

}

在这里插入图片描述
(。??)ノ菜鸟一枚,如有问题欢迎指出

  大数据 最新文章
实现Kafka至少消费一次
亚马逊云科技:还在苦于ETL?Zero ETL的时代
初探MapReduce
【SpringBoot框架篇】32.基于注解+redis实现
Elasticsearch:如何减少 Elasticsearch 集
Go redis操作
Redis面试题
专题五 Redis高并发场景
基于GBase8s和Calcite的多数据源查询
Redis——底层数据结构原理
上一篇文章      下一篇文章      查看所有文章
加:2021-09-13 09:20:26  更:2021-09-13 09:21:26 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 20:09:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码