Java+AJAX搜尋範例


在此範例中,我們將建立一個表單,使用java與ajax實現按名稱搜尋員工。在這裡,我們編寫了兩層應用程式程式碼,以使應用程式易於理解。您可以根據標準編寫資料庫程式碼。

在Java中使用AJAX建立搜尋範例的步驟

需要按照以下步驟操作:

  • 在資料庫中建立表
  • 載入org.json.jar檔案
  • 建立輸入表單
  • 建立伺服器端頁面以使用名稱搜尋員工

載入org.json.jar檔案
下載此範例,在WEB-INF/lib目錄中包含了org.json.jar檔案。

建立輸入表單

在此頁面中,我們建立了一個表單,該表單從使用者獲取輸入以按名稱搜尋員工。使用者在按鍵盤後釋放鍵時,會呼叫searchInfo()函式。ajax程式碼寫在searchInfo()函式中。

檔案:index.html

<!DOCTYPE html>
<html>

<head>
    <script>
        var request = new XMLHttpRequest();
        function searchInfo() {
            var name = document.vinform.name.value;
            var url = "index.jsp?val=" + name;

            try {
                request.onreadystatechange = function () {
                    if (request.readyState == 4) {
                        var val = request.responseText;
                        document.getElementById('mylocation').innerHTML = val;
                    }
                }//end of function  
                request.open("GET", url, true);
                request.send();
            } catch (e) { alert("Unable to connect to server"); }
        }  
    </script>
</head>

<body>
    <h1>Search Employee</h1>
    <form name="vinform">
        <input type="text" name="name" onkeyup="searchInfo()">
    </form>

    <span id="mylocation"></span>
</body>

</html>

建立伺服器端頁面以處理請求
在這個jsp頁面中,我們編寫資料庫程式碼來搜尋以給定名稱開頭的員工。

檔案:index.jsp

<%@ page import="java.sql.*" %>  
<%  
String name=request.getParameter("val");  
if(name==null||name.trim().equals("")){  
out.print("<p>Please enter name!</p>");  
}else{  
try{  
Class.forName("oracle.jdbc.driver.OracleDriver");  
Connection con=DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:xe","system","oracle");  
PreparedStatement ps=con.prepareStatement("select * from emp911 where name like '"+name+"%'");  
ResultSet rs=ps.executeQuery();  

if(!rs.isBeforeFirst()) {      
 out.println("<p>No Record Found!</p>");   
}else{  
out.print("<table border='1' cellpadding='2' width='100%'>");  
out.print("<tr><th>Id</th><th>Name</th><th>Email</th>  
<th>Address</th><th>City</th><th>State</th><th>Country</th></tr>");  
while(rs.next()){  
out.print("<tr><td>"+rs.getString(1)+"</td><td>"+rs.getString(2)+"</td><td>"+rs.getString(3)+"</td>  
<td>"+rs.getString(4)+"</td><td>"+rs.getString(5)+"</td><td>"+rs.getString(6)+"</td>  
<td>"+rs.getString(7)+"</td></tr>");  
}  
out.print("</table>");  
}//end of else for rs.isBeforeFirst  
con.close();  
}catch(Exception e){out.print(e);}  
}//end of else  
%>