1、File--Setting--bulid--compiler 作用:每次修改类文件的时候会自动编译;若不勾选,则需每次手动编译。 2、Shift+Ctrl+Alt+/,选择Registry 勾上compiler.automake.allow.when.app.running 这个东西的作用:允许 ...
分类:
其他好文 时间:
2021-04-28 12:02:11
阅读次数:
0
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http:// ...
分类:
移动开发 时间:
2021-04-28 11:48:02
阅读次数:
0
使用debug模式不对代码加密保护,当使用用Release模式自动对编译成功项目加密保护,这样真的方便不少。 if $(ConfigurationName) == Release goto Release goto Debug:Debugxcopy /y /k "$(TargetPath)" D:\ ...
分类:
Web程序 时间:
2021-04-28 11:40:34
阅读次数:
0
2021年4月24日17:29:22 环境: php8.0.3 centos 8.3 ./configure \ --prefix=/usr/local/php8 \ --with-config-file-path=/usr/local/php8/etc \ --with-curl \ --with ...
分类:
Web程序 时间:
2021-04-27 15:21:59
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0
方法一:cmd脚本 md 文件名+空格+文件名+空格+文件名 如md 1 2 3 保存为bat 如下图 方法二:python 脚本 如上为单个文件创建成功,既然用到python,肯定是想创建多个,新增如下代码 具体代码如下 import re def mkdir(path): # 引入模块 impo ...
分类:
其他好文 时间:
2021-04-27 15:10:37
阅读次数:
0
java遍历文件 package com.vfsd.test; import java.io.File; import java.io.IOException; public class ListFileName { public static void main(String[] args) { ...
分类:
编程语言 时间:
2021-04-27 15:01:42
阅读次数:
0
import pandas as pd import os import re path = "./files/" files = os.listdir(path) # 用于存放Excel,里面的每个元素类型为:pandas.core.frame.DataFrame list_excel = [] ...
分类:
编程语言 时间:
2021-04-27 14:43:38
阅读次数:
0
<input type="file" name="dddd" id="imgs"> <input type="button" onclick="ck()" value="submit" /> var reader = new FileReader(); var AllowImgFileSize = ...
分类:
其他好文 时间:
2021-04-27 14:37:23
阅读次数:
0
The-text-Compatibility-of-Linux-and-Windows 1. 字符编码问题: Linux系统与windows系统的默认编码不同。 1.1 Linux系统下查看文件编码命令file 1.2 文件字符编码转换 1.2.1 文件内容的字符编码转换: iconv 1.2.2 ...