上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 110 下一页
摘要: 在 CentOS7 上安装 MySQL5.7 1 通过 SecureCRT 连接到阿里云 CentOS7 服务器; 2 进入到目录 /usr/local/ 中:cd /usr/local/ 3 创建目录 /usr/local/tools,如果有则忽略: mkdir -p tools 4 创建 /us 阅读全文
posted @ 2017-08-08 17:18 jiftle 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 在windows系统上,jetty默认在运行时会锁定部署的文件。这对于需要在程序运行期间动态生成或改动某些文件就变得不能执行!对于这一点,Jetty的官网上专门有文章进行了解释:http://docs.codehaus.org/display/JETTY/Files+locked+on+Window 阅读全文
posted @ 2017-08-08 09:12 jiftle 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 2.2.4. LengthFieldBasedFrameDecoder解码器 了解TCP通信机制的读者应该都知道TCP底层的粘包和拆包,当我们在接收消息的时候,显示不能认为读取到的报文就是个整包消息,特别是对于采用非阻塞I/O和长连接通信的程序。 如何区分一个整包消息,通常有如下4种做法: 1) 固 阅读全文
posted @ 2017-08-01 14:41 jiftle 阅读(4170) 评论(0) 推荐(0) 编辑
摘要: 实际项目中,通常将LengthFieldBasedFrameDecoder和ByteToMessageDecoder组合使用,前者负责将网络读取的数据报解码为整包消息,后者负责将整包消息解码为最终的业务对象。 引用 http://www.infoq.com/cn/articles/netty-cod 阅读全文
posted @ 2017-08-01 00:11 jiftle 阅读(557) 评论(0) 推荐(0) 编辑
摘要: #coding=utf-8 import numpy as np import pandas as pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker # ------------ 设置为系统中的中文字体------------ from pylab import * mpl.rcParams['fon... 阅读全文
posted @ 2017-07-31 00:44 jiftle 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: # log4j写入数据库 ### 前言 log4j是写入日志到控制台和文件很常见,但是写入到数据库不多见.做性能测试写入到数据库,统计方便些. ### POM ```<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http: 阅读全文
posted @ 2017-07-30 19:01 jiftle 阅读(900) 评论(0) 推荐(0) 编辑
摘要: 在python中,默认情况下是无法显示中文的,如下代码: [python] view plain copy import matplotlib.pyplot as plt # 定义文本框和箭头格式 decisionNode = dict(boxstyle = "sawtooth", fc = "0. 阅读全文
posted @ 2017-07-30 00:50 jiftle 阅读(2077) 评论(0) 推荐(0) 编辑
摘要: 绘图 http://www.cnblogs.com/splended/p/5229699.html 阅读全文
posted @ 2017-07-29 18:52 jiftle 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 在Linux下,如果需要编写界面应用,并且此界面应用对性能的要求不是很高,一般可以使用Python解决。Python中可以使用自带的Tkinter库或者是第三方的Wxpython库,当然Tkinter的移植性更好。 安装Tkinter非常简单,只需要输入下面命令即可: sudo apt-get in 阅读全文
posted @ 2017-07-29 18:20 jiftle 阅读(1533) 评论(0) 推荐(0) 编辑
摘要: public enum TimeUnitextends Enum<TimeUnit>TimeUnit 表示给定单元粒度的时间段,它提供在这些单元中进行跨单元转换和执行计时及延迟操作的实用工具方法。TimeUnit 不维护时间信息,但是有助于组织和使用可能跨各种上下文单独维护的时间表示形式。TimeU 阅读全文
posted @ 2017-07-28 17:17 jiftle 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 86 87 88 89 90 91 92 93 94 ··· 110 下一页