注意安装版本:deepin15基于Debian9 下载包含所有依赖的Bundle版本,下载后解压 1:下载 wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-server_8.0.xx-1debian9_amd64.deb-bundle ...
分类:
数据库技术 时间:
2021-06-19 15:19:38
收藏:
0 评论:
0 赞:
0 阅读:
30
转换流要接据的问题: 当我们的文件是UTF-8的编码方式时,可以正常的读取, 将文件的编码方式改变一下重新读,乱码问题: 转换流是可以将字节流转换为字符流,同时 字节流还可以指定编码方式,用来解决乱码的问题 转换流InputStreamReader和OutputStreamWriter的介绍 Inp ...
分类:
编程语言 时间:
2021-06-19 15:19:23
收藏:
0 评论:
0 赞:
0 阅读:
22
在packgae.json文件中 { //其他内容省略 “build”:{ //打包时复制项目目录下的res中文文件到 打包后的exe所在目录的res文件夹中,文件夹下没有文件的话不会复制 "extraResources": { "from": "./res/", //默认打包到resources目 ...
分类:
其他 时间:
2021-06-19 15:19:06
收藏:
0 评论:
0 赞:
0 阅读:
38
OSCP Security Technology - Enumeration(2) SMB Enumeration We found the tcp port 111 is open from the scanning result. locate smb.conf nano /etc/samba/ ...
分类:
编程语言 时间:
2021-06-19 15:18:51
收藏:
0 评论:
0 赞:
0 阅读:
25
#include <bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) #define all(x) x.begin(),x.end() #define pb(x) push_back(x) #def ...
分类:
其他 时间:
2021-06-19 15:18:36
收藏:
0 评论:
0 赞:
0 阅读:
19
错误: 解决: 思路一:应用程序无法正常启动(Oxc0000142 该部分转自:https://zhidao.baidu.com/question/1116524242532219419.html 应用程序无法正常启动(Oxc0000142)是安装了微软新发布的补丁KB2533623所产生的冲突,解 ...
分类:
Windows开发 时间:
2021-06-19 15:18:22
收藏:
0 评论:
0 赞:
0 阅读:
28
Alt + Insert 快速构建getter & setter ,toString,插入依赖,快速实现接口 ctrl + H 查看继承关系(hierarchy) 指定类右键查看diagram 查看向上的继承关系和实现了哪些接口 ctrl alt + m 抽方法 ctrl alt + b 查找接口的 ...
分类:
其他 时间:
2021-06-19 15:18:09
收藏:
0 评论:
0 赞:
0 阅读:
22
Hive的meta数据支持以下三种存储方式,其中两种属于本地存储,一种为远端存储。远端存储比较适合生产环境。Hive官方wiki详细介绍了这三种方式,链接为:Hive Metastore。 一、本地derby这种方式是最简单的存储方式,只需要在hive-site.xml做如下配置便可 <?xml v ...
分类:
Web开发 时间:
2021-06-19 15:17:58
收藏:
0 评论:
0 赞:
0 阅读:
17
c++基类hpp文件 包含GET_SET宏定义,用来生成get和set函数 #ifndef _MAJIAOOBJECT_H #define _MAJIAOOBJECT_H #include <string> using namespace std; #define MAJIAO_FIELD_DEFI ...
分类:
编程语言 时间:
2021-06-19 15:17:48
收藏:
0 评论:
0 赞:
0 阅读:
26
配置vscode auto save afterDelay 安装 npm install -g nodemon --registry=https://registry.npm.taobao.org 运行 // node test.js nodemon test.js ...
分类:
Web开发 时间:
2021-06-19 15:17:34
收藏:
0 评论:
0 赞:
0 阅读:
28
代码 dateFormat(fmt, date) { let ret; const opt = { "Y+": date.getFullYear().toString(), // 年 "m+": (date.getMonth() + 1).toString(), // 月 "d+": date.ge ...
分类:
其他 时间:
2021-06-19 15:17:20
收藏:
0 评论:
0 赞:
0 阅读:
26
在文章开头先抛几个问题: (1)什么时候才需要分库分表呢?我们的评判标准是什么? (2)一张表存储了多少数据的时候,才需要考虑分库分表? (3)数据增长速度很快,每天产生多少数据,才需要考虑做分库分表? 这些问题你都搞清楚了吗?相信看完这篇文章会有答案。 为什么要分库分表? 首先回答一下为什么要分库 ...
分类:
其他 时间:
2021-06-19 15:17:05
收藏:
0 评论:
0 赞:
0 阅读:
23
复制:ctrl + c粘贴:ctrl + v全选:ctrl + a剪切:ctrl + x撤销:ctrl + z保存:ctrl + s关闭当前窗口:alt + f4永久删除:shift + delete运行:windows + R文件:windows + E任务管理器:ctrl + shift + e ...
分类:
Windows开发 时间:
2021-06-19 15:16:50
收藏:
0 评论:
0 赞:
0 阅读:
28
import com.itextpdf.text.*; import com.itextpdf.text.pdf.*; import java.io.ByteArrayOutputStream; import java.io.IOException; public class PDFUtil { / ...
分类:
其他 时间:
2021-06-19 15:16:40
收藏:
0 评论:
0 赞:
0 阅读:
12
一、@Resource与@Component SR-250标准注解,推荐使用它来代替Spring专有的@Autowired注解。 @Resource的作用相当于@Autowired,只不过 @Autowired按byType自动注入,而@Resource默认按byName自动注入罢了。 @Resou ...
分类:
编程语言 时间:
2021-06-19 15:16:30
收藏:
0 评论:
0 赞:
0 阅读:
33
https://blog.csdn.net/weixin_43763259/article/details/97421189 [root@localhost ~]# cat /proc/6873/stat6873 (a.out) R 6723 6873 6723 34819 6873 8388608 ...
分类:
编程语言 时间:
2021-06-19 15:16:20
收藏:
0 评论:
0 赞:
0 阅读:
23
基于DNS可能发现的问题有一下几点: #1. 走53端口的UDP协议,但非DNS协议,如图1,图2 ? 图1 ? 图2 #2. 利用DNS协议 进行数据和命令传输,常见的DNS tunnel,见图3 ? 图3 ? 图4 #3. 非常规域名,如DGA域名,错误域名等, 分析 走53端口,但非标准的DN ...
分类:
其他 时间:
2021-06-19 15:16:11
收藏:
0 评论:
0 赞:
0 阅读:
25
做公司项目时,发现Text在trigger中设置禁用颜色无效,一直显示白色,随后改成在模板中设置就可以了。 如下: <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="TextBox"> <Border N ...
分类:
Windows开发 时间:
2021-06-19 15:15:56
收藏:
0 评论:
0 赞:
0 阅读:
19
建议在使用Mybatis时,一定要加上@param注解 踩了一个坑,报错为: aused by: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingExcep ...
分类:
其他 时间:
2021-06-19 15:15:42
收藏:
0 评论:
0 赞:
0 阅读:
25
今天小编和大家来聊一聊es6中新增的一个原始数据类型Symbol。在es5中原始数据类型(基本数据类型)有以下六种:Undefind、Null、Bool、 String、Number、Object。今天结合实例和大家一起探讨一下这个神奇的Symbol。大家也可以关注我的微信公众号,蜗牛全栈。 一、基 ...
分类:
其他 时间:
2021-06-19 15:15:33
收藏:
0 评论:
0 赞:
0 阅读:
17