写邮件
<body> <% request.setCharacterEncoding("utf-8"); String uuname = (String) session.getAttribute("uname"); session.setAttribute("uuname", uuname); Connection conn = null; PreparedStatement ps = null; ResultSet rs = null; try { Class.forName("com.mysql.jdbc.Driver"); //加载驱动 String url = "jdbc:mysql://localhost:3306/users"; String user = "root"; String password = "root"; conn = DriverManager.getConnection(url, user, password); // 连接对象 //conn = BaseDao.getConnection(); %> <form action="insert2.jsp" name="huifu" method="post"> sendto :<input type="text" name="sendtoid"><br> <br> 标题:<input type="text" name="ctitle"><br> <br> 正文:<input type="text" name="ccontent"><br> <br> <input type="submit" value="发送"> <a href="main2.jsp">返回</a> </form> <% } catch (Exception e) { e.printStackTrace(); } finally { //BaseDao.closeAll(conn, ps, rs); try { if (rs != null) { rs.close(); } } finally { try { if (ps != null) { ps.close(); } } finally { if (conn != null) { conn.close(); } } } } %> </body>
<body>
<%
request.setCharacterEncoding("utf-8");
String uname = request.getParameter("uname");
session.setAttribute("uname", uname);
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
Class.forName("com.mysql.jdbc.Driver");
//加载驱动
String url = "jdbc:mysql://localhost:3306/users";
String user = "root";
String password = "root";
conn = DriverManager.getConnection(url, user, password);
// 连接对象
//conn = BaseDao.getConnection();
%>
<a href="editemail.jsp">写邮件</a>
<table align="center">
<tr>
<td>username </td>
<td>title </td>
<td>msgcontent </td>
<td>state </td>
<td>sendto </td>
<td>msg_create_date</td>
</tr>
<%
Msg msg = new Msg();
ps = conn.prepareStatement("select * from msg where username=?");
ps.setString(1, uname);
rs = ps.executeQuery();
while (rs.next()) {
%>
<tr>
<td><%=rs.getString("username")%></td>
<td><a href="content.jsp?id=<%=rs.getInt("msgid")%>"><%=rs.getString("title")%></a></td>
<td><%=rs.getString("msgcontent")%></td>
<td>
<%
if (rs.getString("state").equals("1")) {
%> <%
out.print("未读");
%> <%
} else {
%> <%
out.print("已读");
%> <%
}
%>
</td>
<td><%=rs.getString("sendto")%></td>
<td><%=rs.getString("msg_create_date")%></td>
</tr>
<%
}
%>
</table>
<form action="content.jsp" method="post">
按标题查询:<input type="text" name="contitle"> <input type="submit"
value="查询">
</form>
<br>
<%
} catch (Exception e) {
e.printStackTrace();
} finally {
//BaseDao.closeAll(conn, ps, rs);
try {
if (rs != null) {
rs.close();
}
} finally {
try {
if (ps != null) {
ps.close();
}
} finally {
if (conn != null) {
conn.close();
}
}
}
}
%>
</body>
<body>
<%
request.setCharacterEncoding("utf-8");
String uuname = (String) session.getAttribute("uuname");
String ctitle = request.getParameter("ctitle");
String ccontent = request.getParameter("ccontent");
String sendtoid = request.getParameter("sendtoid");
//获取邮件列表页面输入的标题
String contitle = (String) session.getAttribute("newcontitle");
Connection conn = null;
PreparedStatement ps = null;
ResultSet rs = null;
try {
Class.forName("com.mysql.jdbc.Driver");
//加载驱动
String url = "jdbc:mysql://localhost:3306/users";
String user = "root";
String password = "root";
conn = DriverManager.getConnection(url, user, password);
// 连接对象
//conn = BaseDao.getConnection();
%>
<%
if(contitle!=null){
Msg msg = new Msg();
ps = conn.prepareStatement("select * from msg where title=?and username=?");
ps.setString(1, contitle);
ps.setString(2, uuname);
rs = ps.executeQuery();
while (rs.next()) {
ps = conn.prepareStatement("insert into msg(username,title,msgcontent,sendto,state,msg_create_date)" + "values('"
+ rs.getString("sendto") + "','" + ctitle + "','" + ccontent + "','"
+ uuname + "','" + "1" + "','"+"2020-04-27"+"')");
ps.executeUpdate();
request.getRequestDispatcher("index.jsp").forward(request, response);
%>
<%
}
}else{
Msg msg = new Msg();
ps = conn.prepareStatement("insert into msg(username,title,msgcontent,sendto,state,msg_create_date)" + "values('"
+ sendtoid + "','" + ctitle + "','" + ccontent + "','"
+ uuname + "','" + "1" + "','"+"2020-04-27"+"')");
ps.executeUpdate();
request.getRequestDispatcher("index.jsp").forward(request, response);
}
%>
<%
} catch (Exception e) {
e.printStackTrace();
} finally {
//BaseDao.closeAll(conn, ps, rs);
try {
if (rs != null) {
rs.close();
}
} finally {
try {
if (ps != null) {
ps.close();
}
} finally {
if (conn != null) {
conn.close();
}
}
}
}
%>
<br>
</body>




浙公网安备 33010602011771号