前端IDE: VSCODE 项目框架 VUE 后端IDE : ECLIPSE 项目框架 spring boot 1.本地(windows)安装了一个MySQL8,中间因为路径中存在中文,一直有问题,后面采用全英文路径没有出现问题 2.因为前端和后端用的服务不是同一个,所以需要配置跨域访问 前端 : ...
分类:
其他好文 时间:
2020-05-12 16:52:01
阅读次数:
63
1 package com.yhqtv.java1; 2 3 import java.io.File; 4 5 /* 6 * 指定后缀文件搜索 7 * @author XMKJ yhqtv.com Email:yhqtv@qq.com 8 * @create 2020-05-12-12:15 9 * ...
分类:
其他好文 时间:
2020-05-12 13:59:52
阅读次数:
50
连接服务端 一种方式,开始菜单找到MySQL-->MySQL Command Line Client打开,输入密码 另一种方式,打开cmd程序,进入到mysql安装目录的bin目录下 1、进入mysql的bin目录 cd D:\Program Files (x86)\MySQL\MySQL Serv ...
分类:
数据库 时间:
2020-05-12 13:54:05
阅读次数:
68
AllowOverride DirectiveDescription: Types of directives that are allowed in .htaccess files When the server finds an .htaccess file (as specified by A ...
分类:
Web程序 时间:
2020-05-12 12:01:16
阅读次数:
74
问题: 有一段时间没有用码云了,当输入 git push -u origin master命令出现Please make sure you have the correct access rights and the repository exists.错误, 原因: 是git服务器没有发现存储本地 ...
分类:
数据库 时间:
2020-05-12 11:49:41
阅读次数:
99
# 页面定制css代码 <!-- 小老鼠游戏控件 --> <div className="sidebarMouse"><object type="application/x-shockwave-flash" style="outline:none;" data="https://files.cnbl ...
分类:
其他好文 时间:
2020-05-11 18:53:52
阅读次数:
74
一、思路 1、得到某个目录下的所有的.java文件集合 1.1 得到指定的目录:File file=new File("D:\\java"); 1.2 判断目录是否存在 1.3 找到文件夹下面的所有 .java 文件:File[] files=file.listFiles(new FilenameF ...
分类:
编程语言 时间:
2020-05-11 15:35:39
阅读次数:
83
在网上看到好多解决办法,但是都没有解决,一、右键>兼容性>禁用视觉主题,和桌面元素二、修改兼容性,兼容win7三、安装补丁 四、删除目录 C:\ProgramData\Microsoft\VisualStudio\目录以上方法 都试过,均无效一直到这个博客:https://blog.csdn.net ...
一、通过下面方式 BasicFileAttributes attr = null; try { Path path = file.toPath(); attr = Files.readAttributes(path, BasicFileAttributes.class); } catch (IOEx ...
分类:
编程语言 时间:
2020-05-11 00:55:37
阅读次数:
237
def copy_files(path,newpath): #定义函数名称 old_names = os.listdir(path) #取路径下的文件名,生成列表 for old_name in old_names: #遍历列表下的文件名 if old_name.endswith('.xml'): ...
分类:
编程语言 时间:
2020-05-11 00:44:40
阅读次数:
214