1.创建mysql数据库.表.以及测试数据mysql> desc test;+-------+-------------+------+-----+---------+----------------+| Field | Type | Null | Key | Default | Extra |+-------+-------------+------+-----+---------+----------------+| id | int(11) | NO | PRI | NULL | auto…
我创建的是一个winform测试项目:界面如下: 设置: 下面是代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; usin…
linux下,zookeeper安装并启动起来了 DEMO时,JAVA控制台出现: INFO 2014-03-06 09:48:41,276 (ClientCnxn.java:966) - Opening socket connection to server 10.70.42.99/10.70.42.99:2181. Will not attempt to authenticate using SASL (无法定位登录配置) WARN 2014-03-06 09:49:02,320 (Clie…
基于1.3.3版本tooltip的datagrid单元格tip实现 2013年05月25日 ⁄ datagrid ⁄ 共 6122字 ⁄ 评论数 26 ⁄ 被围观 7,033 views+ 文章目录 [隐藏] 1实现代码 2入参列表 3使用示例 4效果演示 在Easyui的1.3.3版本中,作者新增了tooltip组件,尽管样式看起来也不咋的,但是终归也是官方出品,同时其功能也算是比较丰富.之前我写过一篇<扩展:datagrid鼠标经过提示单元格内容>那就是用纯编码生成的tip,更为丑陋,有了…
基础分布 详情地址:https://wiki.centos.org/Download 存档版本 CentOS Linux 7 发布 基于RHEL Source(版本) 存档的树 7(1804) 7.5 树 7(1708) 7.4 树 7(1611) 7.3 树 7(1511) 7.2 树 7(1503) 7.1 树 7(1406) 7 树 CentOS Linux 6 发布 基于RHEL Source(版本) 存档的树 6.10 6.10 树 6.9 6.9 树 6.8 6.8 树 6.7 6.…
基于jquery判断浏览器版本过低代码.这是一款对不支持HTML5跟CSS3代码的浏览器提示用户更换特效代码.效果图如下: 在线预览   源码下载 实现的代码. html代码: <div style="display: none" id="browser_ie"> <div class="brower_info"> <div class="notice_info"> <p> 你的…
基于openstack stable queens版本阅读解析 基于 centos7.5 的linux系统 架构 如下所示,为cinder的官方架构说明: 这里写图片描述 各个组件介绍如下: - DB: sql database for data storage. Used by all components. - Web Dashboard: potential external component that talks to the api. - api: component that re…
一.起因 golang出了最新的1.10版本,而刚出的vgo也是需要基于该最新版本的.为了测试vgo,因此需要将我的v1.9升级到v1.10版本. 安装过golang的同学都知道,golang常用的有2种安装方式. 直接安装官方编译好的包.比如下载go1.7.4.darwin-amd64.tar.gz 基于源码进行编译安装. 下面来说说基于源码编译安装.网上的很多教程在说明源码安装时,都在说明需要基于1.4.3版本,即先有一个母版本的go,再用来编译最新要安装的版本. 但是,我要说下但是.我最开…
[PHP] ;;;;;;;;;;;;;;;;;;;; About php.ini ;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;; 关于php.ini文件 ;;;;;;;;;;;;;;;;;;;; ; This file controls many aspects of PHP's behavior. In order for PHP to; read it, it must be named 'php.ini'. PHP looks for it in the…
/** * 数字转金额格式 * 999999.99 TO 999,999.99 * @param d * @return */ public static String doubleToStr(double d){ NumberFormat numberFormat1 = NumberFormat.getNumberInstance(); numberFormat1.setMaximumFractionDigits(2); return numberFormat1.format(d); } pu…