码迷,mamicode.com
首页 >  
搜索关键字:No such file or dir    ( 61458个结果
文件这样上传,配置更灵活
文件上传 新建一个项目,添加UploadController @RestController public class UploadController { @PostMapping("upload") public String post(@RequestParam("file") Multipa ...
分类:Web程序   时间:2021-07-05 16:40:02    阅读次数:0
CentOS7.8 扩容
1、查看系统分区的详细情况 fdisk -l 2、对磁盘进行分区 #需要注意的是/dev/sdb要根据第一步查看的路径来设置,挂载的路径实际操作的时候略有不同 fdisk /dev/sdb 创建新分区 # 1 选择n创建 ? Command (m for help): n # 2 创建分区 Part ...
分类:其他好文   时间:2021-07-02 16:19:29    阅读次数:0
java IO 获取文件父级路径 ,如果为空则执行删除
file1=new File(path);//path 为文件地址String parentPath=file1.getParent();parentPath为path的父级目录String[] arr=null;//用来验证文件是否为空文件File parentFile=new File(pare ...
分类:编程语言   时间:2021-07-02 16:09:34    阅读次数:0
docker file,docker网络和容器数据卷
容器数据卷 docker的理念是应用和环境包打包城镜像. 那么如果数据在容器中,容器被删除跑路,就嗝屁了,所以数据可以持久化的存储在容器外部 容器数据卷就可以让容器之间有一个数据共享技术.把docker容器产生的数据同步到本地. 注意这个本地是的是操作系统linux不是docker.这是个目录挂载技 ...
分类:其他好文   时间:2021-07-02 15:55:09    阅读次数:0
判断命令是否在PATH环境变量中
1 public static bool IsInPath(string command) 2 { 3 bool isInPath = false; 4 // 判断PATH中是否存在 命令 5 foreach (string test in (Environment.GetEnvironmentVa ...
分类:其他好文   时间:2021-07-02 15:52:09    阅读次数:0
虚拟机中安装JDK
虚拟机中安装JDK 来自 https://blog.csdn.net/lemonmr/article/details/105288271 1.查询虚拟机是32位的还是64位的 getconf LONG_BIT 2.下载jdk压缩包 jdk8下载路径:https://www.oracle.com/te ...
分类:其他好文   时间:2021-07-02 15:33:58    阅读次数:0
Webstorm关闭自动更新
File—Setting—Appearance&Beha—System Setting—Updates 取消勾选Automatically check updates 复选框 ...
分类:Web程序   时间:2021-07-02 15:25:29    阅读次数:0
文件/文件夹下文件编码转换【转码】
#!/usr/bin/python # -*- coding: UTF-8 -*- # @auther gaocan 809900210@qq.com import sys import os import re import codecs ''' Codec: See Python`s Stand ...
分类:其他好文   时间:2021-07-01 17:19:46    阅读次数:0
Visual Studio中配置OpenCV常见问题
附官网教程一篇:OpenCV: How to build applications with OpenCV inside the "Microsoft Visual Studio" 1.设置好环境变量后,代码提示:未找到<opencv2> 解决方案:将上述地址修改为如下地址 $(OPENCV_DIR ...
分类:其他好文   时间:2021-07-01 17:17:25    阅读次数:0
reverse operation of git add
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:其他好文   时间:2021-07-01 17:07:16    阅读次数:0
61458条   上一页 1 ... 3 4 5 6 7 ... 6146 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!