在 linux环境中使用svn 客户端。 客户端指令 就是svn [root@localhost ~]# svn --help usage: svn <subcommand> [options] [args] add blame (praise, annotate, ann) cat changel ...
分类:
系统相关 时间:
2019-12-31 14:44:11
阅读次数:
123
中文匹配: QRegExp reg("^[\u4e00-\u9fa5]+$"); QValidator*validator = new QRegExpValidator(reg); ui->lineEdit->setValidator(validator); 字母数字匹配: QRegExp reg( ...
分类:
其他好文 时间:
2019-12-31 12:20:33
阅读次数:
103
1、需求:①完成游戏排行榜实时刷新 ②查看当前用户的排名、积分 2、参考文章:https://www.cnblogs.com/clubs/p/11691580.html (博主强推) https://www.cnblogs.com/anny-1980/p/4583806.html (Redis的ZS ...
分类:
Web程序 时间:
2019-12-31 11:03:08
阅读次数:
179
首先回顾上节的Django三个基础函数: from django.shortcuts import HttpResponse #返回字符串 from django.shortcuts import render #给他一个数据,再给他一个模板 来渲染后返给用户 from django.shortcu ...
分类:
其他好文 时间:
2019-12-30 18:59:07
阅读次数:
58
Linux双网卡绑定配置 环境介绍 Linux Redhat 6.5、4张网卡 需求 4张网卡两两绑定,4张网卡分别是eth0/eth1/eth2/eth3 其中eth0/eth2绑定(bond0)、eth1/eth3绑定(bond1) 原理介绍 什么是bind? 将多块网卡虚拟成为一块网卡的技术, ...
分类:
系统相关 时间:
2019-12-30 14:14:17
阅读次数:
145
遇到了就记录下吧 感谢下面这边博文提供了解决方法https://port135.com/2014/05/09/solved-net-excel-interops-issue-microsoft-office-excel-cannot-access-the-file-abc-xlsx/ 环境OS:Wi ...
分类:
数据库 时间:
2019-12-30 11:25:19
阅读次数:
80
关于轮播图 : html代码 : <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> ...
分类:
其他好文 时间:
2019-12-29 18:52:02
阅读次数:
87
Flume采集的控制台提示:The channel is full or unexpected failure. The source will try again after 1000 ms 这个是因为当前被采集的文件过大,深层的原因是文件采集的速度和sink的速度没有匹配好。所以应该可以通过增大 ...
分类:
其他好文 时间:
2019-12-28 22:41:20
阅读次数:
335
trigger_error() 函数创建用户级别的错误消息。 trigger_error() 函数能结合内置的错误处理器所关联,或者可以使用用户定义的函数作为新的错误处理程序(set_error_handler())。 例如 <?php if ($usernum>10) { trigger_erro ...
分类:
其他好文 时间:
2019-12-28 16:05:35
阅读次数:
70
java.lang.NullPointerException............... 环境:SSM(通用mapper)+Dubbo 1.检查导包 提示注解@Reference 应该导入 import com.alibaba.dubbo.config.annotation.Reference; ...
分类:
Web程序 时间:
2019-12-28 16:01:27
阅读次数:
206