我能够输出我的桌子,但我却不拿桌头,在我的档案被拯救到我的系统时,我想显示头脑。
这是我使用的java法典:
import java.io.*;
import java.sql.*;
public class ExportData {
public static void main(String args[]) {
String Driver;
Statement stmt;
Driver = "com.mysql.jdbc.Driver";
Connection con = null;
try {
Class.forName(Driver);
con = DriverManager.getConnection(
"jdbc:mysql://localhost/emp", "root", "");
if (!con.isClosed()) {
System.out.println("Successfully connected to MySQL DataBase
");
stmt = con.createStatement();
String filename = "C:/2.txt";
String tablename = "employees";
String sql;
stmt.executeUpdate("SELECT * INTO OUTFILE ""
+ filename + "" FROM " + tablename);
}
} catch (Exception e) {
System.err.println("Exception: " + e.getMessage());
} finally {
try {
if (con != null) {
con.close();
}
} catch (SQLException e) {
}
}
}
}