上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
2023年9月29日
摘要: public class Bilibili { private static String url, videoUrl, audioUrl, saveName; private boolean type; Bilibili(String saveName) { this.saveName = sav 阅读全文
posted @ 2023-09-29 13:02 laremehpe 阅读(370) 评论(0) 推荐(0) 编辑
2023年9月26日
摘要: void prompt(LPWSTR szCmd) { TCHAR szModuleName[MAX_PATH]; STARTUPINFO si = { 0 }; PROCESS_INFORMATION pi = { 0 }; GetModuleFileName(NULL, szModuleName 阅读全文
posted @ 2023-09-26 15:04 laremehpe 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Visual Studio版本: 克隆libcurl项目: git clone https://github.com/curl/curl.git 添加依赖(ssl): 在拷贝的项目下添加deps目录: 在deps下创建lib和include目录: 关于编译openssl参考: https://www 阅读全文
posted @ 2023-09-26 11:28 laremehpe 阅读(180) 评论(0) 推荐(0) 编辑
2023年9月25日
摘要: How to write a program in C++ such that it will delete itself after execution? - Stack Overflow #include <strsafe.h>#include <Windows.h> #define SELF_ 阅读全文
posted @ 2023-09-25 16:30 laremehpe 阅读(43) 评论(0) 推荐(0) 编辑
2023年9月23日
摘要: 前端:(黄色内容为必选项!!!) axios({ url: "/access/getArr", method: "post", data: JSON.stringify([1,2,3,4]), headers: { "Content-Type": "application/json", }, }); 阅读全文
posted @ 2023-09-23 15:47 laremehpe 阅读(136) 评论(0) 推荐(0) 编辑
2023年9月22日
摘要: wchar_t* charToWchar(const char* src) { size_t size = strlen(src) + 1; wchar_t* dest = new wchar_t[size]; size_t outSize; mbstowcs_s(&outSize, dest, s 阅读全文
posted @ 2023-09-22 11:01 laremehpe 阅读(27) 评论(0) 推荐(0) 编辑
2023年9月21日
摘要: int NumberAt(long num, int unit) { while (unit-- > 0) num /= 10; return num % 10; } int NumberLength(long num) { int len = 1, sum = 10; while (num >= 阅读全文
posted @ 2023-09-21 14:35 laremehpe 阅读(199) 评论(0) 推荐(0) 编辑
摘要: class CConfig { HKEY _hKey; public: ~CConfig() { if (_hKey) { RegCloseKey(_hKey); } } CConfig() : _hKey(0) { } LSTATUS Save( PCWSTR lpValueName, DWORD 阅读全文
posted @ 2023-09-21 11:24 laremehpe 阅读(87) 评论(0) 推荐(0) 编辑
摘要: main: #include <stdio.h> #include "common.h" #include "promise.h" #include <chrono> // std::chrono::seconds #include <thread> // std::this_thread::sle 阅读全文
posted @ 2023-09-21 09:34 laremehpe 阅读(37) 评论(0) 推荐(0) 编辑
2023年9月19日
摘要: pom.xml: <!-- database --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <d 阅读全文
posted @ 2023-09-19 15:24 laremehpe 阅读(1045) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页