You need to activate the Developer Options and USB Debugging for the purpose. Follow the below mention steps and you would be good to go: 1.Slide into ...
分类:
其他好文 时间:
2021-04-28 11:44:14
阅读次数:
0
使用debug模式不对代码加密保护,当使用用Release模式自动对编译成功项目加密保护,这样真的方便不少。 if $(ConfigurationName) == Release goto Release goto Debug:Debugxcopy /y /k "$(TargetPath)" D:\ ...
分类:
Web程序 时间:
2021-04-28 11:40:34
阅读次数:
0
参考 https://blog.csdn.net/Simon798/article/details/103161482 先上代码: // Test_Console.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <afx.h> #includ ...
分类:
编程语言 时间:
2021-04-27 14:13:15
阅读次数:
0
OutLine 一般写好一个 scrapy 项目,启动方式大多会在命令行里执行: scrapy crawl “spider-name” (后面有参数就跟参数) 但这么启动不方便去断点调试,不便于快速定位问题、解决问题。 So 记录下自己在pycharm中断点调试的过程。(下文中图片可能看不清,点击即 ...
分类:
其他好文 时间:
2021-04-26 14:02:07
阅读次数:
0
0X00 简介 route命令主要用来显示和操作路由表 0x01 使用 Windows下路由表格式如下: IPv4 路由表 活动路由: 网络目标 网络掩码 网关 接口 跃点数 ## 当接口ip地址值和网关值相同时,网关会显示在链路上 打印路由表 route print ## 全部打印 route p ...
分类:
其他好文 时间:
2021-04-26 13:56:19
阅读次数:
0
logback简单实现对日志的保存和处理,且保存有效时间,7天, 配置文件 <?xml version="1.0" encoding="UTF-8"?> <configuration> <springProperty scope="context" name="loglevel" source="l ...
分类:
编程语言 时间:
2021-04-26 13:55:32
阅读次数:
0
Logger配置文件说明 文件一定在src下,并命名为log4j.properties ### 全局默认配置 log4j.rootLogger = debug,stdout,D,E ### 设置控制台日志输出 ### log4j.appender.stdout = org.apache.log4j. ...
分类:
其他好文 时间:
2021-04-26 13:30:43
阅读次数:
0
系统:win10 今天在使用控制台打印内容时, 发现个人对制表符不是很清楚,在此记录,以便日后查阅. 分割线 函数: int printf(const char* _Format, ...) 注1:这货竟然有返回值, 返回输出的字符数量 注2:关于输出乱码的问题:printf打印,包括Qt控件上显示 ...
分类:
其他好文 时间:
2021-04-26 13:25:33
阅读次数:
0
背景 使用print,无法打印日志的级别错误,故用logging模块 彩色打印 import logging # logger = logging.getLogger('your-module') # Initialize coloredlogs. import coloredlogs colore ...
分类:
编程语言 时间:
2021-04-24 13:26:40
阅读次数:
0
1、测试数据 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e g x g e w 2、打印匹配w的行 [root@centos7 test3]# cat b.txt e t s e s g m x w d g i d t e ...
分类:
系统相关 时间:
2021-04-24 13:18:10
阅读次数:
0