摘要:
远程访问mysql不能创建数据库问题: 首先先登录到mysql mysql -u root -p 然后输入你的密码进入到mysql的执行命令端 执行如下语句: GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "password"; 上面的r 阅读全文
摘要:
Date date = new Date();//获得系统时间. SimpleDateFormat sdf = new SimpleDateFormat( " yyyy-MM-dd HH:mm:ss " ); String nowTime = sdf.format(date); Date time 阅读全文