使用 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++) { fs::path filePath = fs::u8path(paths[i]);
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; }
|