message.jsp
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:2k
源码类别:

Applet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <%@ page import="java.util.Date,java.text.SimpleDateFormat"%>
  3. <jsp:useBean id="messageQun" class="MyFly.Bean.messageQun" scope="request"/>
  4. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  8. <title>无标题文档</title>
  9. </head>
  10. <%!
  11.    String fun(String str)
  12.    {
  13.       try
  14.   {
  15.       return new String(str.getBytes("ISO8859_1"));
  16.   }
  17.   catch(Exception e)
  18.   {
  19.      return "";
  20.   }
  21.    }
  22. %>
  23. <%
  24. SimpleDateFormat formatter = new SimpleDateFormat ("yyyy-MM-dd");//将显示"1999-10-1 21:03:10"的格式. 
  25. Date currentTime_1 = new Date(); 
  26. String msgid1  = request.getParameter( "checkbox" );
  27. String appendTime = formatter.format(currentTime_1); 
  28. String content  = request.getParameter("content");
  29. if(content.equals("")||msgid1.equals("")||msgid1==null)
  30. {
  31.  out.println("<script language=javascript>alert('您还没选中用户');JavaScript:location.href='customerQun.jsp';</script>");
  32. }
  33. else{
  34. String[] msgid  = request.getParameterValues( "checkbox" );
  35. int t=msgid.length;//提高效率
  36. for(int i=0;i<t;i++)
  37. {  
  38.   messageQun.setRecontent(fun(content));
  39.   messageQun.setAppendTime(appendTime);
  40.   messageQun.setUsername(fun(msgid[i]));
  41.   messageQun.sendMessage();
  42. // messageQun.passmessage(fun(msgid[i]));
  43. }
  44. out.println("<script language=javascript>alert('发送成功');JavaScript:location.href='customerQun.jsp';</script>");
  45. }
  46. %>
  47. <body>
  48. </body>
  49. </html>