java illegal character \65279

‘java illegal character \65279’ http://blog.csdn.net/shixing_11/article/details/6976900 某些编辑器会往utf8文件中添加utf8标记 (editplus称其为签名) ,它会在文件开始的地方插入三个不可见的字符 (0xEF 0xBB 0xBF,

Log4j 2.x

Log4j 2.x Log4j2.x log4j-api:log4j2 定义的API log4j-core:log4j2 上述API的实现 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 <properties> <log4j.version>2.17.2</log4j.version> </properties> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-jcl</artifactId> <version>${log4j.version}</version> </dependency> log4

Yahei Consolas Hybrid

Yahei Consolas Hybrid https://github.com/crvdgc/Consolas-with-Yahei Yahei Consolas Hybrid 是一种合成字体,是由微软雅黑的中文字体和 Consolas 的英文字体合成的,Consolas 字体是微软专为程序员开发的一种字体,但没有中文支持

Class.forName

Class.forName Class类简介: Java程序在运行时,Java运行时系统一直对所有的对象进行所谓的运行时类型标识。这项信息纪录了每个对象所属的类。虚拟机

Gradle, 目录

Gradle, 目录 Gradle 是以 Groovy 语言为基础,面向Java应用为主。基于DSL (领域特定语言) 语法的自动化构建工具。 build (ignore) build.gradle (commit) .gradle: (ignore) 目录自动生成, 是gradle 的缓

xml version

xml version There are two current versions of XML. The first (XML 1.0) was initially defined in 1998. It has undergone minor revisions since then, without being given a new version number, and is currently in its fifth edition, as published on November 26, 2008. It is widely implemented and still recommended for general use. The second (XML 1.1) was initially published on February 4, 2004, the same day as XML 1.

阻塞队列 BlockingQueue

阻塞队列 BlockingQueue 什么是阻塞队列 阻塞队列 (BlockingQueue) 是一个支持两个附加操作的队列。这两个附加的操作是: 在队列为空时,获取元素的线程会等待队列变为非空。当队列满

cpu 占用分析

cpu瓶颈分析 1 2 3 4 5 6 7 8 #系统的平均负载 uptime # 每个 CPU 的使用情况 mpstat # 每个进程 CPU 的使用情况 pidstat stress stress https://www.hi-linux.com/posts/59095.html https://www.infoq.cn/article/5jjIdOPx12RWWvGX_H9J?utm_source=rss&utm_medium=article http://9leg.com/java/2016/08/09/cpu-consumption-analysis.html 通常性能瓶颈的表现是资源消耗过多、外部

测试覆盖

测试覆盖 传统的测试覆盖方法常见的有以下几种: 函数覆盖 (Function Coverage) 语句覆盖 (Statement Coverage) 决策覆盖 (Decision Coverage) 条件覆盖 (Condition Coverage) 还有一些其他覆盖方法,如Modified Condition/Decision Cov

墨菲定理

墨菲定理 墨菲定律是美国的一名工程师爱德华·墨菲作出的著名论断,亦称莫非定律、莫非定理、或摩菲定理,是西方世界常用的俚语。墨菲定律主要内容是:

MACD

MACD 指数平滑移动平均线 (Moving Average Convergence and Divergence) 平滑异同移动平均线即MACD指标。MACD称为指数平滑移动平均线,是从双移动平均线发展而来的,由快的移动平均线

usermod

usermod 1 2 # add user to docker group sudo usermod -aG docker $USER 禁止用户登录 usermod -s /sbin/nologin user0 应用举例: 将 newuser2 添加到组 staff 中 usermod -G staff newuser2 修改 newuser 的用户名为 newuser1 usermod -l newuser1 newuser 锁定账号 newuser1 usermod -L newuser1 解除对 newuser1 的锁定 usermod

hostapd

hostapd 主页: http://w1.fi/hostapd/ hostapd是一个_IEEE 802.11的AP和IEEE 802.1X/WPA/WPA2/EAP/RADIUS验证器_.此页面用于

Raspberry Pi配置为无线路由器

Raspberry Pi配置为无线路由器 http://www.cnblogs.com/DaochenShi/p/3152981.html 因为自己有个RPi,但是之前用的8188CUS芯片的无线网卡不支持,虽然当时买的时候是为了让笔记本连双WiFi的,因

raspberry pi wn725n driver

raspberry pi wn725n driver http://www.raspberrypi.org/phpBB3/viewtopic.php?t=55779 http://lukin.cn/p/Raspberry_Pi_TP-LINK_WN725N_V2.html wget https://dl.dropboxusercontent.com/u/80256631/8188eu-20130209.tar.gz for 3.6.11+ #538 and #541 use 8188eu-20130830.tar.gz for 3.6.11+ #524, #528 or #532 use 8188eu-20130815.tar.gz for 3.6.11+ #371 up to #520 use 8188eu-20130209.tar.gz sudo install -p -m 644 8188eu.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless sudo depmod -a sudo modprobe 8188eu

Scala

Scala 发音为/ˈskɑːlə, ˈskeɪlə/ Java VS Scala 从定义上来说,Java是面向对象的编程语言,而Scala是函数式编程语言,这两门语言之间,本