1. 程式人生 > >在jsp頁面中提交資訊到資料庫中

在jsp頁面中提交資訊到資料庫中

可能都知道怎麼在jsp頁面中怎麼向資料表中新增資料,但是可能你會遇到一些麻煩。

在今天作業中我就遇到了,在jsp註冊頁面中實現新增功能時資訊都能新增成功,但是註冊成功了卻登入不了。我去資料庫中檢視卻新增成功了,我想試一下是不是插入資料的語法錯了(提示下:如果在程式碼中遇到問題卻不知道是哪的問題你可以試著將可能的地方都輸出一下,然後在控制檯看錯誤的地方

String sql="insert into usersinfo (username,password,question) value('"+username+"','"+password+"','"+answer+"')";
System.out.println(sql);

嗯……現在資料庫中也試了一下,語法確實沒錯但是我發現存在的資料也查詢不到了。後來想了下是不是有空格,試了一下用字串去除空格的方法有沒有用結果成功了。

String username=request.getParameter("username").trim();
String password=request.getParameter("password").trim();
String answer=request.getParameter("answer").trim();