以前总是喜欢通过phpmyadmin去添加用户和数据库,这次装完系统后,配置了一大堆东东,实在不想安装phpmyadmin了,就通过命令行方式创建了数据库和设置权限,记录一下,免得以后总是百度 关键步骤如下: create database test; grant all privileges on test.* to joe@localhost identified by '1'; flush privileges;…
http://my.oschina.net/liux/blog/37875 网上很多用Ant来编译打包Android应用的文章,毕竟Ant是纯Java语言编写的,具有很好的跨平台性.今天想写个纯windows平台下的DOS命令行方式编译Android项目的bat文件,见以下代码: echo off rem =========基本参数配置============ rem jdk的路径 set JAVA_HOME=D:/Program Files/Java/jdk1.6.0_24 rem jdk的版…
For non-interactive testing, you may choose to run JMeter without the GUI. To do so, use the following command options-n This specifies JMeter is to run in non-gui mode-t [name of JMX file that contains the Test Plan].-l [name of JTL file to log samp…