jsp网页怎么实现即时聊天
2015-12-20 · 做真实的自己 用良心做教育
jsp中可以实现简单的聊天功能,例子如下:
chat.jsp代码如下:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page language="java" contentType="text/html;charset=GB2312"%>
<html>
<body>
<%
try{
request.setCharacterEncoding("GB2312");
String mywords=request.getParameter("message");
String t="";
if(application.getAttribute("words")==null && mywords!=null){
t= (String)request.getRemoteAddr() + ":" + mywords + "<br/>";
application.setAttribute("words",(Object)t);
out.println(t);
}
else if(mywords!=null){
t=(String)application.getAttribute("words");
t += (String)request.getRemoteAddr() + ":" + mywords + "<br/>";
application.setAttribute("words",(Object)t);
out.println(t);
}
}
catch(Exception e){
}
%>
<form method="post" action="index.jsp" >
<input name="message" type="text" size=50 >
<input type="submit" value="发送消息" >
</form>
</body></html>
输出对话内容如下:
那麻烦你给我说说先关技术吧,之后流程帮我说一下,我在写文档,他们要我把相关技术和流程写出来,你大概给我说一下就行了 ,谢谢了啊。