c++17将const char*处理为中文路径的方法

使用 glfwSetDropCallback 的过程中遇到了中文乱码问题,需要将const char*转换为中文路径

可以使用 C++ 标准库的 std::filesystem,它支持 UTF-8 编码,允许跨平台处理带有中文字符的文件路径。这种方法不依赖特定平台 API,能够在多平台上正常处理中文字符。

以下是使用 std::filesystem::path 处理 GLFW 中文路径的示例代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <GLFW/glfw3.h>
#include <filesystem>
#include <iostream>
#include <string>

namespace fs = std::filesystem;

// 回调函数,处理文件拖放事件
void dropCallback(GLFWwindow* window, int count, const char** paths) {
for (int i = 0; i < count; i++) {
// 将 UTF-8 编码的 char* 转换为 std::filesystem::path
fs::path filePath = fs::u8path(paths[i]);

// 打印路径,可以使用 native() 来获取平台适配的字符串
std::cout << "文件路径: " << filePath.u8string() << std::endl;
}
}

int main() {
if (!glfwInit()) {
return -1;
}

GLFWwindow* window = glfwCreateWindow(640, 480, "GLFW Drop Callback", NULL, NULL);
if (!window) {
glfwTerminate();
return -1;
}

glfwMakeContextCurrent(window);

// 设置文件拖放回调
glfwSetDropCallback(window, dropCallback);

while (!glfwWindowShouldClose(window)) {
glfwPollEvents();
}

glfwDestroyWindow(window);
glfwTerminate();
return 0;
}

c++17将const char*处理为中文路径的方法
https://chordfish-k.github.io/2024/10/31/cpp/cpp-20241031/
作者
超弦鱼
发布于
2024年10月31日
许可协议