基本数据类型的包装类 基本数据类型也不是对象,当我们想要用一些方法的时候,我们必须要将基本数据类型变成包装类,然后去使用里面的方法 下面是基本数据类型所对应的包装类 byte……Byte short……Short long……Long boolean……Boolean char……Character ...
分类:
其他好文 时间:
2019-06-28 00:56:54
阅读次数:
121
We are given , a length string of characters from the set . (These letters stand for "decreasing" and "increasing".) A valid permutation is a permutat ...
分类:
其他好文 时间:
2019-06-27 00:36:19
阅读次数:
147
一、常用sql show variables like 'character_set_client';#查询字符集 show databases;#列出所有的服务器上的数据库alter create database if not exists test;#创建一个数据库 drop database ...
分类:
数据库 时间:
2019-06-26 23:11:22
阅读次数:
276
Xshell:\> Connecting to 192.168.43.128:22...Connection established.Escape character is '^@]'./usr/bin/xauth: creating new authority file /root/.Xautho ...
分类:
数据库 时间:
2019-06-26 21:58:53
阅读次数:
162
一、导出: 语法:mysqldump --default-character-set=gb2312 -u用户名 -p密码 数据库名 -d --add-drop-table > 导出文件名.sql 注意: 密码可以省略,如果省略,则程序会提示输入密码; -d 只导出表结构,没有表数据; --add-d ...
分类:
数据库 时间:
2019-06-26 19:27:12
阅读次数:
199
一、查看字符集编码: 登录mysql show variables like '%character%'; 二、修改编码: 编辑/etc/my.cnf ,设置后的配置文件如下: [root@node03 /]# cat /etc/my.cnf [mysql]default-character-set ...
分类:
数据库 时间:
2019-06-26 19:14:34
阅读次数:
155
3.The significance of Books 书本的意义 (1)A bookless life is an imcomplete life.Books influence the depth and breadth of life.They meet the natural desire ...
分类:
其他好文 时间:
2019-06-25 22:12:05
阅读次数:
158
解决zabbix中文字体局部乱码问题问题:当zabbix的Web界面切换中文字体时,局部出现中文乱码:原因:1、初始化数据库的时候未使用utf8编码所致.初始化数据库使用命令createdatabasezabbixdefaultcharsetutf8;或者my.cnf增加如下配置default-character-set=utf82、zabbix使用DejaVuSan.ttf字体,不支持中文,导致
分类:
其他好文 时间:
2019-06-25 20:55:52
阅读次数:
205
我们要搭建整个SSM框架,所以要继续上篇文章没有完成的工作,下面配置mybatis-geneator,自动生成mybatis代码。 在上篇文章中的pom.xml的配置文件中已经加了mybatis-geneator的依赖包,如下图: 请注意:上图的plugins是和pluginManagement是同 ...
分类:
其他好文 时间:
2019-06-25 16:39:26
阅读次数:
95
错误信息:UnicodeEncodeError: 'latin-1' codec can't encode character '\u5c0f' in position 31: Body ('小') is not valid Latin-1. Use body.encode('utf-8') if ...
分类:
Web程序 时间:
2019-06-23 12:48:59
阅读次数:
105