如何设置mysql系统变量 让excel导入更快

如何设置mysql系统变量 让excel导入更快,第1张

去找phpexeelPHPExcel 是相当强大的 MS Office Excel 文档生成类库,当需要输出比较复杂格式数据的时候,PHPExcel 是个不错的选择。不过其使用方法相对来说也就有些繁琐。列举以记之。view plaincopy to clipboardprint?<? //设置PHPExcel类库的include path set_include_path('.logo.gif')$objDrawing->setHeight(36)$objDrawing->setCoordinates('C23')$objDrawing->setOffsetX(10)$objDrawing->setRotation(15)$objDrawing->getShadow()->setVisible(true)$objDrawing->getShadow()->setDirection(36)$objDrawing->setWorksheet($objActSheet)//添加一个新的worksheet $objExcel->createSheet()$objExcel->getSheet(1)->setTitle('测试2') //保护单元格 $objExcel->getSheet(1)->getProtection()->setSheet(true)$objExcel->getSheet(1)->protectCells('A1:C22', 'PHPExcel')//************************************* //输出内容 // $outputFileName = "output.xls"//到文件 ////$objWriter->save($outputFileName)//or //到浏览器 ////header("Content-Type: application/force-download")////header("Content-Type: application/octet-stream")////header("Content-Type: application/download")////header('Content-Disposition:inlinefilename="'.$outputFileName.'"')////header("Content-Transfer-Encoding: binary")////header("Expires: Mon, 26 Jul 1997 05:00:00 GMT")////header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT")////header("Cache-Control: must-revalidate, post-check=0, pre-check=0")////header("Pragma: no-cache")////$objWriter->save('php://output') ?>

首先,设置mysql的环境变量(在path中添加%MYSQL_HOME%\bin),重启电脑。

完整代码:

备份:

public static void main(String[] args) {

backup()

load()

}

public static void backup() {

try {

Runtime rt = Runtime.getRuntime()

// 调用 mysql 的 cmd:

Process child = rt

.exec("mysqldump -u root --set-charset=utf8 bjse act_obj")// 设置导出编码为utf8。这里必须是utf8

// 把进程执行中的控制台输出信息写入.sql文件,即生成了备份文件。注:如果不对控制台信息进行读出,则会导致进程堵塞无法运行

InputStream in = child.getInputStream()// 控制台的输出信息作为输入流

InputStreamReader xx = new InputStreamReader(in, "utf8")// 设置输出流编码为utf8。这里必须是utf8,否则从流中读入的是乱码

String inStr

StringBuffer sb = new StringBuffer("")

String outStr

// 组合控制台输出信息字符串

BufferedReader br = new BufferedReader(xx)

while ((inStr = br.readLine()) != null) {

sb.append(inStr + "\r\n")

}

outStr = sb.toString()

// 要用来做导入用的sql目标文件:

FileOutputStream fout = new FileOutputStream(

"e:/mysql-5.0.27-win32/bin/bjse22.sql")

OutputStreamWriter writer = new OutputStreamWriter(fout, "utf8")

writer.write(outStr)

// 注:这里如果用缓冲方式写入文件的话,会导致中文乱码,用flush()方法则可以避免

writer.flush()

// 别忘记关闭输入输出流

in.close()

xx.close()

br.close()

writer.close()

fout.close()

System.out.println("")

} catch (Exception e) {

e.printStackTrace()

}

}

public static void load() {

try {

String fPath = "e:/mysql-5.0.27-win32/bin/bjse22.sql"

Runtime rt = Runtime.getRuntime()

// 调用 mysql 的 cmd:

Process child = rt.exec("mysql -u root bjse ")

OutputStream out = child.getOutputStream()//控制台的输入信息作为输出流

String inStr

StringBuffer sb = new StringBuffer("")

String outStr

BufferedReader br = new BufferedReader(new InputStreamReader(

new FileInputStream(fPath), "utf8"))

while ((inStr = br.readLine()) != null) {

sb.append(inStr + "\r\n")

}

outStr = sb.toString()

OutputStreamWriter writer = new OutputStreamWriter(out, "utf8")

writer.write(outStr)

// 注:这里如果用缓冲方式写入文件的话,会导致中文乱码,用flush()方法则可以避免

writer.flush()

// 别忘记关闭输入输出流

out.close()

br.close()

writer.close()

System.out.println("")

} catch (Exception e) {

e.printStackTrace()

}

}

备份语句:

mysql>SELECT * INTO OUTFILE "D:\\data\\db_testtemp.txt" fields terminated by ',

' from db_testtemp where std_state='1'

Query OK, 1 row affected (0.00 sec)

mysql>SELECT * INTO OUTFILE "D:\\data\\db_testtemp.txt" fields terminated by ',

' from db_testtemp

Query OK, 2 rows affected (0.00 sec)

只生成一个只有数据的.txt:SELECT * INTO OUTFILE "D:\\data\\db_testtemp.txt" fields terminated by ',' lines terminated by '\r\n' from db_testtemp

只生成一个只有数据的.txt:mysqldump -uroot -pncae2010 -w "std_state='1'" -T D:\data --no-create-info --fields-terminated-by=, exam db_testtemp

生成一个创建数据库语句的.sql,一个只有数据的.txt:mysqldump -uroot -pncae2010 -w "std_state='1'" -T D:\data --fields-terminated-by=, exam db_testtemp

只生成insert语句:mysqldump -uroot -pncae2010 -w "std_state='1'" -t exam db_testtemp >D:\data\a.sql


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7554120.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-07
下一篇 2023-04-07

发表评论

登录后才能评论

评论列表(0条)

保存