We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cppjieba::Jieba构造函数如下,参数为std::string
Jieba(const string& dict_path, const string& model_path, const string& user_dict_path, const string& idfPath, const string& stopWordPath)
读取文件时,因为中文是以UTF-8编码存储在std::string中的,所以会造成找不到指定的文件,打开文件失败。
ifstream ifs(filePath.c_str());
The text was updated successfully, but these errors were encountered:
同样问题,解决办法用不带中文的相对路径
Sorry, something went wrong.
尝试使用以下命令加在 main 函数第一句 std::locale::global(std::locale("zh_CN.UTF-8"));
std::locale::global(std::locale("zh_CN.UTF-8"));
No branches or pull requests
cppjieba::Jieba构造函数如下,参数为std::string
读取文件时,因为中文是以UTF-8编码存储在std::string中的,所以会造成找不到指定的文件,打开文件失败。
The text was updated successfully, but these errors were encountered: