如何使用此路径:"file:///E:/apache-tomcat-7.0.10/webapps/examples/WEB-INF/match.html"
?这是对的吗?
这是我的html文件:
<html>
<form method=post action="../classes/match1">
<body bgcolor="powderblue">
<center><h1>MATCH</h1>
<hr/>
MATCH NO <input type="text" name="op1"/><br/><pre>
DATE <input type="text" name="op2"/><br/><pre>
CITY <input type="text" name="op3"/><br/><pre>
TEAM1 <input type="text" name="op4"/><br/><pre>
TEAM2 <input type="text" name="op5"/><br/><pre>
STADIUM <input type="text" name="op6"/><br/><pre>
WINNER <input type="text" name="op7"/><br/><pre>
MAN OF THE MATCH <input type="text" name="op8"/><br/><pre>
<input type="submit" value="submit"/> 
<input type="reset" value="reset"/>
</body>
</html>
我的servlet代码:
import javax.servlet.http.HttpServlet;
import java.io.*;
import java.util.*;
import java.sql.*;
import java.sql.Date.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class match1 extends HttpServlet {
Connection con;
PreparedStatement pst;
public void doPost(HttpServletRequest req,HttpServletResponse res)throws ServletException {
try {
PrintWriter out=res.getWriter();
con=null;
pst=null;
Class.forName("oracle.jdbc.driver.OracleDriver");
con=DriverManager.getConnection("jdbc:odbc:gan","scott","tiger");
int count=0;
String op1=req.getParameter("op1");
String op2=req.getParameter("op2");
String op3=req.getParameter("op3");
String op4=req.getParameter("op4");
String op5=req.getParameter("op5");
String op6=req.getParameter("op6");
String op7=req.getParameter("op7");
String op8=req.getParameter("op8");
pst=con.prepareStatement("insert into matchdetails values(?,?,?,?,?,?,?,?)");
pst.setString(1,op1);
pst.setString(2,op2);
pst.setString(3,op3);
pst.setString(4,op4);
pst.setString(5,op5);
pst.setString(6,op6);
pst.setString(7,op7);
pst.setString(8,op8);
out.println("<html><center><body>matched</body></center></html>");
int count1=pst.executeUpdate();
if(count1==0) {
out.println("<html><center><body>ENTER ALL FIELD VALUES</body></center></html>");
} else {
out.println("<html><center><body>INSERTION SUCCESFUL</body></center></html>");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
if (con!=null) con.close();
} catch(Exception e) {
System.out.println("error");
}
}
}
}
答案 0 :(得分:2)
如何使用此路径:“file:/// E:/apache-tomcat-7.0.10/webapps/examples/WEB-INF/match.html”?这是对的吗?
你的意思是,如何通过webbrowser访问它?不,那条路不正确。 Tomcat仅侦听HTTP请求。正确启动后,它默认侦听http://localhost:8080。所有webapps都有自己的上下文名称,默认为webapp文件夹名称。因此,http://localhost:8080/examples可以访问您的网络应用程序。但是,/WEB-INF
文件夹中的文件无法直接访问。您需要在match.html
文件夹中向上移动/examples
一级。然后,您就可以通过http://localhost:8080/examples/match.html访问它了。
无关,将连接和语句声明为servlet的实例变量是一种不好的做法。这不是线程安全的。您需要在try
语句之前的方法块中声明它们。您的HTML也有一些语法错误。使用http://validator.w3.org了解它们。最后,在servlet中发出原始HTML也是一种不好的做法,通常使用JSP。但也许你现在只是在学习。只是为了让你知道:)已经使用预备语句并最终关闭连接对于首发来说是非常好的。
关于学习JSP / Servlets,我建议你也阅读我们的信息/维基页面。
答案 1 :(得分:0)
match.html
,请勿使用match1
在表格行动中。 match.html
下的war
个文件
文件夹,而不是web-inf
。 web.xml
配置文件。我甚至还没看过servlet类,但我建议先测试一些System.out.println()
输出以确保它甚至被执行。
<html>
<body bgcolor="powderblue">
<center>
<h1>MATCH</h1>
<form method="post" action="/match.html">
<pre>MATCH NO <input type="text" name="op1"/></pre>
<pre>DATE <input type="text" name="op2"/></pre>
<pre>CITY <input type="text" name="op3"/></pre>
<pre>TEAM1 <input type="text" name="op4"/></pre>
<pre>TEAM2 <input type="text" name="op5"/></pre>
<pre>STADIUM <input type="text" name="op6"/></pre>
<pre>WINNER <input type="text" name="op7"/></pre>
<pre>MAN OF THE MATCH <input type="text" name="op8"/></pre>
<pre><input type="submit" value="submit"/></pre>
<input type="reset" value="reset"/>
</form>
</center>
</body>
</html>