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
几种算法中都存在未指定字符集编码 导致不同环境下会出现乱码的情况。都出现在lookup方法中,将bytes转成String的地方,需要手动传入字符编码: 将String oriString = new String(bytes)改为String oriString = new String(bytes, StandardCharsets.UTF_8)即可
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
几种算法中都存在未指定字符集编码 导致不同环境下会出现乱码的情况。都出现在lookup方法中,将bytes转成String的地方,需要手动传入字符编码:
将String oriString = new String(bytes)改为String oriString = new String(bytes, StandardCharsets.UTF_8)即可
The text was updated successfully, but these errors were encountered: