1.Github下载实在慢,可以从gitee下载 https://gitee.com/chao__/UnrealEngine 2.UE4 Setup.bat 太慢,可以多线程下载,在cmd中 setup.bat --thread=20 3.提示缺少.net framework4.6.2,WIN10默 ...
分类:
其他好文 时间:
2020-10-20 16:36:52
阅读次数:
29
一、使用IntelliJ IDEA直接创建案例工程 1、打开IntelliJ IDEA,【File】-->【New】-->【Project】 2、选择【Java Project】-->【Next】 3、点击【Finish】 4、点击工程 ,新建两个文件夹:apps和libs,目录结构如下: 二、导入 ...
分类:
移动开发 时间:
2020-10-20 16:31:25
阅读次数:
34
spring boot多环境配置及文件位置 spring boot 配置文件(application.yaml / xml)优先级:官方文档 file:./config/ - 优先级最高(项目根路径下的config) file:./ - 优先级第二 -(项目根路径下) classpath:/conf ...
分类:
编程语言 时间:
2020-10-20 16:16:23
阅读次数:
23
Router#shrunBuildingconfiguration...Currentconfiguration:2422bytes!!Lastconfigurationchangeat11:32:24UTCFriOct162020byvxiadminversion15.1servicetimestampsdebugdatetimemsecservicetimestampslogdatetimem
分类:
系统相关 时间:
2020-10-19 22:53:25
阅读次数:
26
不要随便升级anaconda的pip,坑死了 重装pip过程: 参考https://blog.csdn.net/douniwan007009/article/details/81463958 1、先到 pypi 官网下载 setuptools,解压2、用cmder或cmd切到解压后的目录,执行命令 ...
分类:
其他好文 时间:
2020-10-19 22:48:02
阅读次数:
25
Settings-Editor-File and Code Templates,选择 Python Script """ @author:$ @Description:描述 @file:$.py @time:\({YEAR}/\)/$ """ if name == 'main': pass ...
分类:
其他好文 时间:
2020-10-19 22:47:19
阅读次数:
22
package practice; import java.io.File; import java.io.IOException; public class CreateFile { public static void main(String[] args) { File f = new Fil ...
分类:
编程语言 时间:
2020-10-19 22:28:49
阅读次数:
25
mybatis动态SQL之where标签 为了简化 where 1=1 的条件拼装,我们可以采用where标签来简化开发 <!-- 根据用户信息查询 --> <select id="findByUser" resultType="user" parameterType="user"> select ...
分类:
数据库 时间:
2020-10-18 17:10:41
阅读次数:
48
find命令先查找符合的文件,for循环结合mv和cp命令进行对文件处理#!/bin/bashfind/root/test/-typef-name"*.txt">/tmp/tar.txt#找到符合的文件写入到tar.txt文本里面foriin`cat/tmp/tar.txt`#遍历文本domv$i$i.bakdoned=`date+%y%m%d%H%M%S`#创建一个目录文件防止重复mkdi
分类:
其他好文 时间:
2020-10-18 17:00:07
阅读次数:
23
ABAP 正则表达式 ABAP支持正则表达式。 支持正则表达式的语句: 1.FIND,REPLACE语句; 2.Functions:count,count_xxx,contains,find,find_xxx,match,matches,replace,substring,substring_xxx ...
分类:
其他好文 时间:
2020-10-18 16:46:52
阅读次数:
27