- 博客(8)
- 收藏
- 关注
原创 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
418
原创 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
1532
1
原创 fprintf 未将消息内容写到文件的解决方法
原因:内容保存在缓存区,未被写入文件内方法一:在fopen之后,加语句:setbuf(fp,NULL);方法二:fprintf 后面加语句加粗样式 fflush(fp);
2021-12-09 16:01:25
1825
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
365
原创 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
905
2
原创 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
1129
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人