上一页 1 2 3 4 5 6 7 ··· 24 下一页
摘要: 创建一个用户: create user 'oukele'@'%' identified by 'oukele'; 提示下面所列出的信息的话,得刷新一下权限表 The MySQL server is running with the --skip-grant-tables option so it c 阅读全文
posted @ 2019-11-09 22:57 追梦滴小蜗牛 阅读(699) 评论(0) 推荐(0) 编辑
摘要: 1、去官网下载 MySQL 压缩包 2、配置环境变量 3、创建配置文件my.ini (放置 mysql-5.7.28-winx64 目录下) my.ini 配置文件 编写如下内容 [client] port=3306 default-character-set=utf8 [mysqld] # 设置为 阅读全文
posted @ 2019-11-01 23:26 追梦滴小蜗牛 阅读(515) 评论(0) 推荐(0) 编辑
摘要: (我这里的案例 是模拟 将项目包放到tomcat里面运行 ) 新建一个Java Web的Maven项目....... 此过程省略... 项目结构如图: 1、pom.xml 配置 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http:/ 阅读全文
posted @ 2019-10-22 00:25 追梦滴小蜗牛 阅读(5647) 评论(0) 推荐(1) 编辑
摘要: 一、正则表达式 正则表达式:就是使用一系列预定义的特殊字符来描述一个字符串的格式规则,然后使用该格式规则匹配某个字符串是否符合格式要求。 表达式意义 [ ] 表示1个字符 [abc] 表示abc中任一个字符,字符a、b或c [^abc] 表示除了a、b、c之外的任意字符 [a-zA-Z0-9] 表示 阅读全文
posted @ 2019-10-20 17:58 追梦滴小蜗牛 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 直接上代码 package doc.utils.transformation; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; import java.io.FileInputStream; import java.io.F 阅读全文
posted @ 2019-10-16 20:54 追梦滴小蜗牛 阅读(2877) 评论(0) 推荐(0) 编辑
摘要: 在终端下执行 sudo apt-get install language-pack-zh-han* 然后去语言中心设置中文,并全局使用即可。 阅读全文
posted @ 2019-10-11 10:53 追梦滴小蜗牛 阅读(2602) 评论(0) 推荐(0) 编辑
摘要: 在 nodeJs 服务中 读取到文件流,并且传往后台 const fs = require('fs'); const fetch = require('node-fetch'); const FormData = require('form-data'); var file = fs.createR 阅读全文
posted @ 2019-09-28 00:00 追梦滴小蜗牛 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 开始使用 WebStorm 搭建( WebStorm 请自行安装...... ) 在 项目 根目录 新建个 app.js 开始 编写 app,js // 引入 HTTP 模块 const http = require("http"); // 可以使用 HTTPS 模块 // const https 阅读全文
posted @ 2019-09-26 23:24 追梦滴小蜗牛 阅读(2909) 评论(0) 推荐(0) 编辑
摘要: // 设置 淘宝镜像源npm config set registry https://registry.npm.taobao.org // 查看 使用的 镜像源npm config get registry// 安装 淘宝镜像源 npm install -g cnpm --registry=http 阅读全文
posted @ 2019-09-26 16:32 追梦滴小蜗牛 阅读(14975) 评论(0) 推荐(4) 编辑
摘要: 直接上代码吧... 里面有注释 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-3.4.1.js"></script> </head> <body> <scri 阅读全文
posted @ 2019-09-24 09:20 追梦滴小蜗牛 阅读(991) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 24 下一页