您的位置:

jsp聊天系统没有使用数据库的简单介绍

jsp聊天系统没有使用数据库的简单介绍

更新:

本文目录一览:

代码怎么建立mysql数据库,朋友给了我一个JSP系统,可是没有数据库。怎么样建立的数据库才和系统吻合

这样做比较费劲,首先你得看他的JSP系统是如何调用数据库的,同时还得看JSP系统是直接读取或写入数据库字段的还是通过存储过程读取或写入数据库的,如果是直接读取的那根据JSP系统的字段名称及类型建立数据库中的表结构,如果是通过存储过程操作数据库的那就复杂了(如果是存储过程调用的话,劝你还是放弃该系统,因为这样你完全不知道数据库的表结构)

jsp+servlet 用户登录 不用数据库。新手java自学一个星期,求大神帮助。非常感谢!

你应该先判断一下那个req.getParameter("name")和那个req.getParameter("name")是否为空.如果不判断的话,它就会报那个语法错误的,因为这个页面一打开的话,req.getParameter("name")和

req.getParameter("name")!=null并没有被赋值,所以为空,肯定报错的;

代码应该这样写的:

if(req.getParameter("name")!=nullreq.getParameter("name")!=null){

String uname=req.getParameter("name");

String umm=req.getParameter("mm");

if(name.equals(uname)mm.equals(umm))

{

res.sendRedirect("main.jsp");

}

else

{

res.sendRedirect("fail.jsp");

}

}

用Jsp编写无数据库连接的简单公共聊天室,用application和list相关知识编写,请帮忙编写一下。

JSP页面:

%@ page language="java" import="java.util.*" pageEncoding="gbk"%

%

String path = request.getContextPath();

String basePath = request.getScheme() + "://"

+ request.getServerName() + ":" + request.getServerPort()

+ path + "/";

%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

base href="%=basePath%"

titleMy JSP 'index.jsp' starting page/title

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"

meta http-equiv="keywords" content="keyword1,keyword2,keyword3"

meta http-equiv="description" content="This is my page"

!--

link rel="stylesheet" type="text/css" href="styles.css"

--

/head

body

form action="DoApplication" method="post"

输入聊天信息:

br /

textarea name="talk" rows="5" cols="40"/textarea

br /

input type="submit" value="确认"

input type="reset" value="清空"

/form

hr /

已有的聊天信息:

br /

%

List app = null;

app = (List) application.getAttribute("app");

if (app != null) {

%

textarea rows="10" cols="40" style="text-align: left"

%

Iterator ite = app.iterator();

while (ite.hasNext()) {

String info = (String) ite.next();

%

%=info%

%

}

}

%

/textarea

/body

/html

------------------------------------------------

Severlet:

public class DoApplication extends HttpServlet {

/**

* Constructor of the object.

*/

public DoApplication() {

super();

}

/**

* Destruction of the servlet. br

*/

public void destroy() {

super.destroy(); // Just puts "destroy" string in log

// Put your code here

}

/**

* The doGet method of the servlet. br

*

* This method is called when a form has its tag value method equals to get.

*

* @param request the request send by the client to the server

* @param response the response send by the server to the client

* @throws ServletException if an error occurred

* @throws IOException if an error occurred

*/

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

String info=(String)request.getParameter("talk");

ServletContext application = this.getServletContext();

List appList=null;

appList=(List)application.getAttribute("app");

if(appList!=null){

appList.add(info);

}else{

appList=new ArrayList();

appList.add(info);

}

application.setAttribute("app", appList);

response.setCharacterEncoding("gbk");

request.getRequestDispatcher("index.jsp").forward(request, response);

}

/**

* The doPost method of the servlet. br

*

* This method is called when a form has its tag value method equals to post.

*

* @param request the request send by the client to the server

* @param response the response send by the server to the client

* @throws ServletException if an error occurred

* @throws IOException if an error occurred

*/

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

this.doGet(request, response);

}

/**

* Initialization of the servlet. br

*

* @throws ServletException if an error occurs

*/

public void init() throws ServletException {

// Put your code here

}

}

jsp聊天系统没有使用数据库的简单介绍

本文目录一览: 1、代码怎么建立mysql数据库,朋友给了我一个JSP系统,可是没有数据库。怎么样建立的数据库才和系统吻合 2、jsp+servlet 用户登录 不用数据库。新手java自学一个星期,

2023-12-08
关于jsp网页版聊天系统的信息

本文目录一览: 1、JSP在线聊天系统 2、用JSP实现一个简易的网页版聊天室。 3、JSP在线聊天系统退出的问题 4、jsp实现在线聊天功能 5、怎么用JSP设计与实现简单聊天室系统 6、jsp网页

2023-12-08
java实现的qq聊天系统的简单介绍

2022-11-22
php语音聊天系统,php语音聊天系统怎么用

2022-11-20
jsp程序开发学习笔记2,jsp程序设计题库

本文目录一览: 1、《JSP&Servlet学习笔记》pdf下载在线阅读,求百度网盘云资源 2、林信良编著jsp&servlet学习笔记第2版课后答案吗 3、jsp有没有快速掌握的办法呀? 4、要学J

2023-12-08
jsp代码bbs系统代码下载的简单介绍

本文目录一览: 1、求使用Tomcat+Mysql+Myeclipse+jsp搭建的简单BBS系统源代码 2、基于java jsp asp php vb安卓系统毕业设计与实现论文源码下载? 3、求JS

2023-12-08
java聊天系统,java聊天系统怎么保存聊天记录

2023-01-07
重学java笔记,java笔记总结

2022-11-23
网上订餐系统jsp源代码的简单介绍

本文目录一览: 1、求一份计算机本科的毕业设计,题目只要计算机类的就可以 2、有哪些适合新手练手的Java项目 3、兄弟,你能发一下jsp点餐系统吗,2691449978@qq.com? 4、jsp登

2023-12-08
商城系统源码jsp的简单介绍

本文目录一览: 1、jsp商城系统首页主要代码在哪个位置 2、基于JSP的电子商城系统源码+数据库,要能够运行哦 3、求一个基于JSP的简单网上购物系统 4、求一个毕业设计选题系统源码 做毕设用的 用

2023-12-08
网上商城系统jsp代码的简单介绍

本文目录一览: 1、jsp网上商城系统是怎么开发的?需要什么流程!? 2、jsp商城系统首页主要代码在哪个位置 3、急求一个用JSP做的网上商城系统设计与实现——后台管理子系统的源代码! 4、我买了个

2023-12-08
php局域网聊天源码,php局域网聊天源码在哪

2023-01-03
jsp数据库笔记,jsp写入数据库

本文目录一览: 1、怎么用jsp连接mysql数据库 2、jsp中怎么使用数据库 3、JSP 从数据库中如何取得图片的路径? 怎么用jsp连接mysql数据库 一. 数据库的连接和操作笔记:1.初始化

2023-12-08
数据库的笔记mysql,数据库管理系统笔记

2022-11-24
聊天系统java开源,开源聊天系统源码

2022-11-17
利用jsp程序开发网上购物系统的简单介绍

2022-11-25
下载python蚁群算法实现的简单介绍

2022-11-10
jsp通用模块源代码下载的简单介绍

本文目录一览: 1、基于java jsp asp php vb安卓系统毕业设计与实现论文源码下载? 2、如何把网站上的一个jsp文件下载下来 3、哪位可以提供JSP的网站计数器的源代码?一定要没有错误

2023-12-08
怎样通过js获取数据库数据的简单介绍

本文目录一览: 1、js调用数据库里面的数据 2、js 如何读取数据库信息 3、javascript如何读取到数据库的信息 4、javascript中如何获取从数据库取出的数据? 5、JS 文件如何获

2023-12-08
jsp做的网络系统源代码谁有的简单介绍

本文目录一览: 1、急求一个用jsp做的网上购物系统的源代码! 2、jsp做的网络系统源代码谁有? 3、jsp登陆界面源代码 4、急求一个用JSP做的网上商城系统设计与实现——后台管理子系统的源代码!

2023-12-08