会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
江湖小小白
博客园
首页
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
19
下一页
2019年8月1日
MyBatis 整合 Druid
摘要: pom.xml 依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta
阅读全文
posted @ 2019-08-01 17:23 江湖小小白
阅读(8471)
评论(0)
推荐(1)
2019年7月30日
Java 数据类型与编码(ASCII、Unicode 和 UTF-8)
摘要: 机械硬盘硬件结构(了解)https://diy.pconline.com.cn/cpu/study_cpu/1009/2215404_all.html 一、数据储存单位 1.bit(位) 计算机数据在硬盘中,以机械硬盘为例,其内部由磁性材料制成。磁极有 N\S 两级,可表示两种状态。可以看成 0/1
阅读全文
posted @ 2019-07-30 18:47 江湖小小白
阅读(2476)
评论(0)
推荐(0)
2019年7月26日
Aria2
摘要: 多线程下载工具 官网:https://aria2.github.io/ 下载:https://github.com/aria2/aria2/releases UI(aria2 本身没有界面,都是使用命令操作,这里使用 AriaNG):https://github.com/mayswind/AriaN
阅读全文
posted @ 2019-07-26 16:16 江湖小小白
阅读(1965)
评论(0)
推荐(0)
2019年7月24日
Tomcat Manager Config
摘要: 使用网页部署新 Web 应用程序或取消现有 Web 应用程序部署,且无需重启容器。 一、开启管理 编辑 conf/tomcat-users.xml 添加如下内容,这里用户名和密码都为 tomcat <role rolename="admin-gui"/> <role rolename="manage
阅读全文
posted @ 2019-07-24 19:33 江湖小小白
阅读(590)
评论(0)
推荐(0)
Selenium Java
摘要: 官网:https://www.seleniumhq.org/ 下载地址:https://sites.google.com/a/chromium.org/chromedriver/downloads 华为镜像地址:https://mirrors.huaweicloud.com/chromedriver
阅读全文
posted @ 2019-07-24 17:13 江湖小小白
阅读(1247)
评论(0)
推荐(0)
2019年7月22日
Telnet/SSH 客户端
摘要: 一、WinSCP linux 与 windows 间传递文件。可以与 putty 配合使用。 官网提供便携版下载:https://winscp.net/eng/downloads.php 支持中文,语言包:https://winscp.net/eng/translations.php 设置 wind
阅读全文
posted @ 2019-07-22 22:31 江湖小小白
阅读(3500)
评论(0)
推荐(0)
2019年7月15日
ElasticSearch Install
摘要: 与 JDK 版本对应关系:https://www.elastic.co/support/matrix#matrix_jvm 下载安装(自带 JDK):https://www.elastic.co/downloads/elasticsearch & https://www.elastic.co/dow
阅读全文
posted @ 2019-07-15 18:58 江湖小小白
阅读(12336)
评论(2)
推荐(0)
2019年7月13日
用 dnSpy 反编译调试 .NET 程序
摘要: dnSpy 官网下载:https://github.com/0xd4d/dnSpy/releases 运行需要 .NET Framework 4 环境:https://dotnet.microsoft.com/download/visual-studio-sdks 具体操作步骤如下所示: 1.添加系
阅读全文
posted @ 2019-07-13 13:33 江湖小小白
阅读(6990)
评论(0)
推荐(4)
2019年7月9日
Install MySQL
摘要: Linux(Generic) https://dev.mysql.com/downloads/mysql/ & https://dev.mysql.com/doc/refman/8.0/en/binary-installation.html & https://dev.mysql.com/doc/r
阅读全文
posted @ 2019-07-09 16:37 江湖小小白
阅读(12985)
评论(0)
推荐(1)
Linux 磁盘管理
摘要: 过程:连接磁盘 -> 挂载磁盘 -> 磁盘分区 -> 挂载分区 -> 分区格式化 -> 使用 一、挂载磁盘 除了真实连接的物理磁盘还可以创建虚拟磁盘镜像 img 文件挂载 # 创建 1G 大小的空白文件 disk.img,内容为全 0 dd if=/dev/zero of=disk.img bs=1
阅读全文
posted @ 2019-07-09 14:49 江湖小小白
阅读(6328)
评论(0)
推荐(0)
2019年7月7日
Java IO Stream
摘要: Java 中 的 IO 操作就是对字型节或字符型数据的读写。 一、IO 分类 1.按流的方向分类 输入流(InputStream、Reader):只能进行读操作。 输出流(OutputStream、Writer):只能进行写操作。 2.按流的类型分类 字节流(InputStream、OutputSt
阅读全文
posted @ 2019-07-07 03:34 江湖小小白
阅读(547)
评论(0)
推荐(0)
2019年6月27日
搭建 JVM(HotSpot) 源码调试环境(OpenJDK8)
摘要: 原本想在 Windows 下编译调试,但过程中遇到了诸多错误(老是报路径错误。。。),最后只好放弃。(已成功搭建:https://www.cnblogs.com/jhxxb/p/12589712.html) 此次记录调试的方法为 CentOS7 上编译,Windows 上使用 Clion 远程调试(
阅读全文
posted @ 2019-06-27 21:59 江湖小小白
阅读(8118)
评论(3)
推荐(4)
2019年6月26日
Browser
摘要: Chrome 一、下载 带自动更新:https://www.google.cn/chrome Windows 64 位 Stable 正式版离线安装包:https://www.google.com/chrome/?platform=win64&extra=stablechannel&standalo
阅读全文
posted @ 2019-06-26 00:23 江湖小小白
阅读(1400)
评论(0)
推荐(0)
2019年6月24日
Java JVM 栈帧(Stack Frame)
摘要: 一、概述 栈帧位置 JVM 执行 Java 程序时需要装载各种数据到内存中,不同的数据存放在不同的内存区中(逻辑上),这些数据内存区称作运行时数据区(Run-Time Data Areas)。 其中 JVM Stack(Stack 或虚拟机栈、线程栈、栈)中存放的就是 Stack Frame(Fra
阅读全文
posted @ 2019-06-24 00:36 江湖小小白
阅读(25647)
评论(6)
推荐(10)
2019年6月22日
GCC、G++
摘要: mian.c int main() { return 0; } 编译:gcc main.c && ./a.out,给 gcc 加上 -verbose 可以看到更多信息 GCC 编译过程:https://www3.ntu.edu.sg/home/ehchua/programming/cpp/gcc_m
阅读全文
posted @ 2019-06-22 11:24 江湖小小白
阅读(833)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
19
下一页
公告