- 博客(19)
- 收藏
- 关注
原创 npm 命令卡在 / idealTree:xxx: sill idealTree buil
例如:npm install […] / idealTree:study_vue3: sill idealTree buil 一直不动。更改淘宝镜像:npm config set registry https://registry.npmmirror.com/临时关闭SSL验证:npm set strict-ssl false。完成之后还是有问题,
2024-01-31 14:16:31 394
原创 RabbitMQ 命令报错 Error: unable to perform an operation on node ‘rabbit@xxxx‘.
1、将 C:\Users\XXXX.erlang.cookie 复制到 C:\Windows\System32\config\systemprofile 目录下(已经有了就替换掉)2、重启 RabbitMQ 服务(Windows + R -> services.msc -> 找到 RabbitMQ -> 右击重启)
2024-01-15 16:53:55 1391 1
原创 fprintf 未将消息内容写到文件的解决方法
原因:内容保存在缓存区,未被写入文件内方法一:在fopen之后,加语句:setbuf(fp,NULL);方法二:fprintf 后面加语句加粗样式 fflush(fp);
2021-12-09 16:01:25 1738 1
原创 循环检测U盘并复制所有文件
#include <windows.h>void main(){ while(1){ char DiskName[256]="H:\\"; UINT DiskType; unsigned char i = 0x42; // 42为大写字母B // 遍历盘符 for(; i < 0x5B; i += 0x1){ // 5A为大写字母Z, 5B为中括号[ DiskName[0]
2021-12-06 15:25:04 343
原创 递归查询所有空目录地址
import java.io.File;public class Study { public static void list(File file) { if (file.isDirectory()) { if (file.list().length == 0) { System.out.println(file); // 打印目录路径 } else { Fil
2021-06-08 13:56:04 143
原创 JDBC新建数据库建表并插入数据
import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.Statement;public class Study { public static void main(String[] args) throws Exception { Class.forName("com.mysql.jdbc.Driver");
2021-01-16 16:27:20 889 2
原创 连接JDBC并执行查询表中内容操作
这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Markdown编辑器你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Mar
2021-01-16 16:04:04 238 1
原创 VSCode 报错:Python was not found
**报错内容:**Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640**解决办法:**在setting.json中添加"code-runner.executorMap": { "python":"$pythonPath $fullFileName", },...
2020-11-18 21:16:00 1084 1
原创 递归遍历目录及文件
import java.io.File;public class Study { public static void listFile(File file){ if(file!=null){ //如果该文件存在 if(file.isDirectory()){ //如果是目录 System.out.println(file); //打印该目录路径 File f[]=file.listF..
2020-10-24 10:53:14 279
原创 feof && fgetc && fputc
#include<stdio.h>#include<stdlib.h>const int BUFFER=4000; // 缓冲区设置不能太大void main(){ char buf[BUFFER]; FILE *sfp,*dfp; // 定义一个FILE结构体变量,程序打开一个文件即得到对应的FILE结构指针 if ((sfp = fopen("C:\\Users\\HECSON\\Desktop\\src.txt","r"))==NULL){ printf(
2020-10-20 11:29:49 108
原创 知识点
HTML不区分大小写注释:<!-- -->转到某网页:<body onload = " parent.location = ' https://www.baidu.com/ ' "> <!-- 网址一定要完整 -->
2020-10-14 12:03:49 84
原创 JavaScript操作DOM节点
<html><head> <meta charset="UTF-8"> <title>JavaScript操作DOM节点</title> <script type="text/javascript"> function modifyDOM(){ document.getElementById("txt").innerHTML="用户名:"; document.getElementB
2020-10-13 23:20:03 170
原创 CSS选择器
<!DOCTYPE html> <html lang="en"> <!-- language为English --><head> <meta charset="UTF-8"> <!-- 声明字符编码格式 --> <title>选择器</title> <style type="text/css"> x{ color: red;
2020-10-13 23:01:23 91
原创 计算时间差并倒数
#include<stdio.h>#include<stdlib.h>#include<windows.h>#include<time.h>time_t convert(int year,int month,int day,int hour,int min,int sec){ tm info = {0}; info.tm_year = year - 1900; //info中的tm_year的记年是从1900年开始 info.tm_mon = m
2020-10-13 22:44:04 178
原创 隐藏控制台
#include<windows.h>#pragma comment( linker, "/subsystem:windows /entry:mainCRTStartup" ) //隐藏控制台void main(){ L: int a = MessageBox(NULL,"content","title",MB_YESNO|MB_ICONQUESTION); if(a == IDYES){ //选择 是 MessageBox(NULL,"内容","标题",MB_OK|MB_IC
2020-10-13 21:20:27 476
原创 知识点
Python不区分单双引号但区分大小写单行注释:# 多行注释:’’’ ‘’’Python变量不需要声明pip更新(其中一个): python -m pip install --upgrade pippython -m pip install -U --force-reinstall pippip install --user --upgrade pippython -m pip install --upgrade pip --user...
2020-10-13 20:04:07 82
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人