次のサーブレットを実行すると、次のようになります。
// package projectcodes;
public void doPost(HttpServletRequest request,HttpServletResponse response) throws ServletException,IOException {
String UserID = request.getParameter("UserID");
String UserPassword = request.getParameter("UserPassword");
String userName = null;
String Email = null;
Encrypter encrypter = new Encrypter();
String hashedPassword = null;
try {
hashedPassword = encrypter.hashPassword(UserPassword);
Context context = new InitialContext();
DataSource ds = (DataSource)context.lookup("Java:comp/env/jdbc/photog");
Connection connection = ds.getConnection();
String sqlStatement = "SELECT email,firstname FROM registrationinformation WHERE password='" + hashedPassword + "'";
PreparedStatement statement = connection.prepareStatement(sqlStatement);
ResultSet set = statement.executeQuery();
userName = set.getString(1); // <<---------- Line number 28
response.sendRedirect("portfolio_one.jsp");
// userName = set.getString("FirstName");
Email = set.getString(3);
if(set.wasNull() || Email.compareTo(UserID) != 0) {
// turn to the error page
response.sendRedirect("LoginFailure.jsp");
} else {
// start the session and take to his homepage
HttpSession session = request.getSession();
session.setAttribute("UserName", userName);
session.setMaxInactiveInterval(900); // If the request doesn't come withing 900 seconds the server will invalidate the session
RequestDispatcher rd = request.getRequestDispatcher("portfolio_one.jsp");
rd.forward(request, response); // forward to the user home-page
}
}catch(Exception exc) {
System.out.println(exc);
}
次の例外が発生します。
INFO: Java.sql.SQLException: Invalid operation at current cursor position.
at org.Apache.derby.client.am.SQLExceptionFactory40.getSQLException(Unknown Source)
at org.Apache.derby.client.am.SqlException.getSQLException(Unknown Source)
at org.Apache.derby.client.am.ResultSet.getString(Unknown Source)
at com.Sun.gjc.spi.base.ResultSetWrapper.getString(ResultSetWrapper.Java:155)
-----> at projectcodes.ValidateDataForSignIn.doPost(ValidateDataForSignIn.Java:28
at javax.servlet.http.HttpServlet.service(HttpServlet.Java:754)
at javax.servlet.http.HttpServlet.service(HttpServlet.Java:847)
at org.Apache.catalina.core.StandardWrapper.service(StandardWrapper.Java:1539)
at org.Apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.Java:281)
at org.Apache.catalina.core.StandardContextValve.invoke(StandardContextValve.Java:175)
at org.Apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.Java:655)
at org.Apache.catalina.core.StandardPipeline.invoke(StandardPipeline.Java:595)
at com.Sun.enterprise.web.WebPipeline.invoke(WebPipeline.Java:98)
at com.Sun.enterprise.web.PESessionLockingStandardPipeline.invoke(PESessionLockingStandardPipeline.Java:91)
at org.Apache.catalina.core.StandardHostValve.invoke(StandardHostValve.Java:162)
at org.Apache.catalina.connector.CoyoteAdapter.doService(CoyoteAdapter.Java:330)
at org.Apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.Java:231)
at com.Sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.Java:174)
at com.Sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.Java:828)
at com.Sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.Java:725)
at com.Sun.grizzly.http.ProcessorTask.process(ProcessorTask.Java:1019)
at com.Sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.Java:225)
at com.Sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.Java:137)
at com.Sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.Java:104)
at com.Sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.Java:90)
at com.Sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.Java:79)
at com.Sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.Java:54)
at com.Sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.Java:59)
at com.Sun.grizzly.ContextTask.run(ContextTask.Java:71)
at com.Sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.Java:532)
at com.Sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.Java:513)
at Java.lang.Thread.run(Thread.Java:722)
Caused by: org.Apache.derby.client.am.SqlException: Invalid operation at current cursor position.
at org.Apache.derby.client.am.ResultSet.checkForValidCursorPosition(Unknown Source)
at org.Apache.derby.client.am.ResultSet.checkGetterPreconditions(Unknown Source)
... 30 more
上記のサーバーからのログは、行番号28が例外の原因であることを示しています。しかし、私は例外の理由を得ることができません。テーブルのすべての列のデータ型はvarcharです。
サーブレットコードで行番号28 (サーバーログによる例外の原因)を強調表示しました。
最初にnext
ステートメントを使用する必要があります。
_ResultSet set = statement.executeQuery();
if (set.next()) {
userName = set.getString(1);
//your logic...
}
_
更新
Java 6ドキュメントによると
ResultSetカーソルは、最初は最初の行の前に配置されます。次にメソッドを最初に呼び出すと、最初の行が現在の行になります。 2番目の呼び出しは、2番目の行を現在の行にします。
これはあなたが文を実行するときを意味します
_ResultSet set = statement.executeQuery();
_
ResultSet set
が作成され、データの最初の結果の前の行を指します。あなたはそれをこのように見ることができます:
登録情報からメールアドレス、名を選択
_ email | firstname
____________________________________
0 <= set points to here
1 [email protected] | Email1 Person
2 [email protected] | Foo Bar
_
したがって、ResulSetを開いた後、メソッドnext
を実行して最初の行に移動します。
_if(set.next())
_
これで、set
は次のようになります。
_ email | firstname
____________________________________
0
1 [email protected] | Email1 Person <= set points to here
2 [email protected] | Foo Bar
_
ResultSet内のすべてのデータを読み取る必要がある場合は、次の場合の代わりにwhileを使用する必要があります。
_while(set.next()) {
//read data from the actual row
//automatically will try to forward 1 row
}
_
set.next()
がfalseを返す場合は、読み取る行がなかったことを意味するため、whileループは終了します。
詳細情報 ここ 。
ResultSet set = statement.executeQuery();
セットを繰り返してから、Stringを取得します。
while(set.next()) {
me = set.getString(1); // <<---------- Line number 28
}
resultSetを初期化した後、カーソルに行があるかどうかを確認します。
if(rs.next()){ //your all other works should go here }
ポインタを正しい位置に設定する必要があります。
while(set.hasNext()){
set.next();
String a = set.getString(1);
String b = set.getString(2);
}
あなたは最初のものを得ることができます:rs.first()