Skip to content
New issue

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

Default Charset Inconsistent behavior bug #546

Open
gxchenjingli opened this issue May 29, 2024 · 0 comments
Open

Default Charset Inconsistent behavior bug #546

gxchenjingli opened this issue May 29, 2024 · 0 comments

Comments

@gxchenjingli
Copy link

in calss net.lingala.zip4j.ZipFile

this function

private Zip4jConfig buildConfig() {
    return new Zip4jConfig(charset, bufferSize, useUtf8CharsetForPasswords);
}

change to

private Zip4jConfig buildConfig() {
    return new Zip4jConfig(charset == null ? CHARSET_UTF_8 : charset , bufferSize, useUtf8CharsetForPasswords);
}

or

private Charset charset = null;

change to

private Charset charset = CHARSET_UTF_8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant