sqlsever连接上java以后,怎么用java语句写前端?
时间: 2024-02-24 18:00:34 浏览: 64
sqlserver与java连接接操作
4星 · 用户满意度95%
连接上 SQL Server 数据库后,你可以使用 Java 的 JDBC API 来执行 SQL 查询和更新操作。以下是一个简单的示例代码,演示如何使用 JDBC 连接 SQL Server 数据库并执行 SQL 查询操作:
```java
import java.sql.*;
public class SQLServerExample {
public static void main(String[] args) {
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 加载数据库驱动
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
// 建立数据库连接
String url = "jdbc:sqlserver://localhost:1433;databaseName=mydatabase";
String user = "myusername";
String password = "mypassword";
conn = DriverManager.getConnection(url, user, password);
// 创建 Statement 对象
stmt = conn.createStatement();
// 执行 SQL 查询操作
String sql = "SELECT * FROM mytable";
rs = stmt.executeQuery(sql);
// 处理查询结果
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
System.out.println("id=" + id + ", name=" + name + ", age=" + age);
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
try {
if (rs != null) rs.close();
if (stmt != null) stmt.close();
if (conn != null) conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
```
在你的前端代码中,你可以使用 Java Servlet 或者 JavaServer Pages(JSP)等技术来调用上述的 Java 代码,并将查询结果以 HTML 格式返回给前端页面。例如,以下是一个简单的 JSP 示例代码,演示如何使用 JDBC 查询 SQL Server 数据库并将结果以 HTML 表格的形式返回给前端页面:
```jsp
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ page import="java.sql.*" %>
<html>
<head><title>SQL Server Example</title></head>
<body>
<table border="1">
<%
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
try {
// 加载数据库驱动
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
// 建立数据库连接
String url = "jdbc:sqlserver://localhost:1433;databaseName=mydatabase";
String user = "myusername";
String password = "mypassword";
conn = DriverManager.getConnection(url, user, password);
// 创建 Statement 对象
stmt = conn.createStatement();
// 执行 SQL 查询操作
String sql = "SELECT * FROM mytable";
rs = stmt.executeQuery(sql);
// 处理查询结果
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("name");
int age = rs.getInt("age");
%>
<tr>
<td><%= id %></td>
<td><%= name %></td>
<td><%= age %></td>
</tr>
<%
}
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 关闭数据库连接
try {
if (rs != null) rs.close();
if (stmt != null) stmt.close();
if (conn != null) conn.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
%>
</table>
</body>
</html>
```
以上代码仅供参考,你需要根据自己的具体需求进行修改和扩展。
阅读全文