在C++中進行urlencode時,可以使用標準庫中的一些函數來避免亂碼。例如,可以使用std::string
和std::stringstream
來構建和處理URL編碼字符串。以下是一個示例代碼:
#include <iostream>
#include <string>
#include <sstream>
#include <iomanip>
std::string urlencode(const std::string &s) {
std::ostringstream escaped;
escaped.fill('0');
escaped << std::hex;
for (auto c : s) {
if (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~') {
escaped << c;
} else if (c == ' ') {
escaped << '+';
} else {
escaped << '%' << std::setw(2) << int((unsigned char)c);
}
}
return escaped.str();
}
int main() {
std::string input = "Hello, 世界";
std::string encoded = urlencode(input);
std::cout << "Encoded string: " << encoded << std::endl;
return 0;
}
在上面的代碼中,urlencode
函數將輸入的字符串進行URL編碼,并返回編碼后的字符串。通過使用std::ostringstream
和std::hex
,可以確保輸出的URL編碼字符串不會出現亂碼。當然,還需要根據具體需求對特殊字符進行處理,確保生成的URL編碼字符串符合標準。