public class Test {
private static final String DRIVER_CLASS_NAME = ""
private static final String JDBC_URL = ""
private static final String USER = ""
private static final String PASSWORD = ""
public static void main(String[] args) {
int count = 10// 插入记录的数目
Object[][] params = new Object[count][]
for (int i = 0i <counti++)
params[i] = new Object[] { "", "", "" }
batch(params)
}
public static Connection getConnection() {
Connection conn = null
try {
Class.forName(DRIVER_CLASS_NAME)
conn = DriverManager.getConnection(JDBC_URL, USER, PASSWORD)
return conn
} catch (Exception e) {
return null
}
}
public static void batch(Object[][] params) {
QueryRunner queryRunner = new QueryRunner(true)
String sql = "INSERT INTO TABLE_NAME VALUES (?,?,?)"
try {
queryRunner.batch(getConnection(), sql, params)
} catch (SQLException e) {
e.printStackTrace()
}
}
}
就是写文件啊,循环list string str = Guid.NewGuid().ToString()string strPath = "C:\\Program Files\\" + str + ".xls"FileStream fs = File.Create(strPath)StreamWriter sw = new StreamWriter(fs, Encoding.Unicode)string strLine = ""// 写入列标题 for (int i = 0i <colNames.Lengthi++) { string[] col = colNames[i].Split('=')strLine = strLine + col[1].ToString() + Convert.ToChar(9)} sw.WriteLine(strLine)strLine = ""// 写入报表数据 for (int i = 0i <dt.Rows.Counti++) { // for (int j = 0j <colNames.Lengthj++) { string[] col = colNames[j].Split('=')strLine = strLine + dt.Rows[i][col[0]].ToString() + Convert.ToChar(9)} sw.WriteLine(strLine)strLine = ""} sw.Close()fs.Close()欢迎分享,转载请注明来源:内存溢出
评论列表(0条)