给个JSP聊天室源代码
给个JSP聊天室的源代码要好使的最好是JSP+SERVLET的如果有使用说明最好不过如果好使偶还会继续追加分数的!偶希望你们把经过你们自己手动测试的东西发给偶而不是把那些...
给个JSP聊天室的源代码 要好使的 最好是JSP + SERVLET的
如果有使用说明最好不过 如果好使偶还会继续追加分数的!
偶希望你们把经过你们自己手动测试的东西发给偶 而不是把那些你们在网上搜到的东西直接转到偶的手里 明白? 不然偶会很伤心很生气很愤怒的
很感激旷世蠢材给偶的JAVA聊天室 不过 偶要强调的是:偶要的是JSP的在线聊天室..
再次强调 把测试好的东西发过来!偶的邮箱153996072@qq.com 展开
如果有使用说明最好不过 如果好使偶还会继续追加分数的!
偶希望你们把经过你们自己手动测试的东西发给偶 而不是把那些你们在网上搜到的东西直接转到偶的手里 明白? 不然偶会很伤心很生气很愤怒的
很感激旷世蠢材给偶的JAVA聊天室 不过 偶要强调的是:偶要的是JSP的在线聊天室..
再次强调 把测试好的东西发过来!偶的邮箱153996072@qq.com 展开
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
有一个,但不知道是不是你想要的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
package org.jetic.web.chat;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
public class ChatServlet extends HttpServlet {
private static final String CONTENT_TYPE = "text/html";
/**Initialize global variables*/
public void init(ServletConfig config) throws ServletException {
super.init(config);
try {
new Server();
}
catch (IOException ex) {
System.err.println("IO 错误:");
ex.printStackTrace(System.err);
destroy();
}
}
/**Process the HTTP Get request*/
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType(CONTENT_TYPE);
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head><title>ChatServlet</title></head>");
out.println("<body>");
out.println("<p>The servlet has received a GET. This is the reply.</p>");
out.println("</body></html>");
}
/**Clean up resources*/
public void destroy() {
}
}
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
public class ChatServlet extends HttpServlet {
private static final String CONTENT_TYPE = "text/html";
/**Initialize global variables*/
public void init(ServletConfig config) throws ServletException {
super.init(config);
try {
new Server();
}
catch (IOException ex) {
System.err.println("IO 错误:");
ex.printStackTrace(System.err);
destroy();
}
}
/**Process the HTTP Get request*/
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType(CONTENT_TYPE);
PrintWriter out = response.getWriter();
out.println("<html>");
out.println("<head><title>ChatServlet</title></head>");
out.println("<body>");
out.println("<p>The servlet has received a GET. This is the reply.</p>");
out.println("</body></html>");
}
/**Clean up resources*/
public void destroy() {
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2008-12-09
展开全部
已发,
数据库 mysql,包括db层,业务逻辑层。SERVLET层。全部用jsp 页面实现!
数据库 mysql,包括db层,业务逻辑层。SERVLET层。全部用jsp 页面实现!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询