码迷,mamicode.com
首页 >  
搜索关键字:copy file    ( 62933个结果
php写入文本,文件夹不存在则创建
// 安全文件路径,$fileName:完成文件路径 function securityFilePath($fileName,$read_write = '0777'){ $path = dirname($fileName); if(!file_exists($path)){// 判断路径是否存在, ...
分类:Web程序   时间:2021-04-29 11:54:35    阅读次数:0
docker部署springBoot项目
Dockerfile 文件 写法1(实际用过) FROM openjdk:8-jdk-alpine VOLUME /tmp ADD testdocker-1.0-SNAPSHOT.jar app.jar ENTRYPOINT ["java","-Djava.security.egd=file:/de ...
分类:编程语言   时间:2021-04-28 12:04:08    阅读次数:0
IDEA中避免修改后台代码后手动install和重启 Maven
1、File--Setting--bulid--compiler 作用:每次修改类文件的时候会自动编译;若不勾选,则需每次手动编译。 2、Shift+Ctrl+Alt+/,选择Registry 勾上compiler.automake.allow.when.app.running 这个东西的作用:允许 ...
分类:其他好文   时间:2021-04-28 12:02:11    阅读次数:0
mybatis 自动生成mapper文件
<?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
centos8编译安装php8
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
java遍历文件
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
图片转Base64格式
<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
The-text-Compatibility-of-Linux-and-Windows 1. 字符编码问题: Linux系统与windows系统的默认编码不同。 1.1 Linux系统下查看文件编码命令file 1.2 文件字符编码转换 1.2.1 文件内容的字符编码转换: iconv 1.2.2 ...
分类:Windows程序   时间:2021-04-27 14:18:07    阅读次数:0
vue axios upload 多个文件
html <input id="upload_file" type="file" multiple @change="v_upload_files"/> 注意input file 是不支持v-model的,因为v-model是双向数据绑定,而input file里面的文件只能通过点击选取来进行变更。 ...
分类:移动开发   时间:2021-04-26 14:11:33    阅读次数:0
62933条   上一页 1 ... 34 35 36 37 38 ... 6294 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!