JarOutputStream 和 JarEntry 的字符编码错误

发布于 2024-12-27 01:26:39 字数 488 浏览 0 评论 0原文

我正在使用 JarOutputStream 类从我的系统部署 Jar。 我使用 JarEntry 类将一些文件放入 jar 中。

问题是: 当我放置一个包含一些“特殊”字符(如“Módulo de Conteúdo Local.wfre”)的文件时,该文件将转到名称为“M+�dulo de Conte+�do Local.wfre”的 JAR

我的原始代码是这样的:

JarEntry jarAdd = new JarEntry(fileEntryName.replace('\', '/')); out.putNextEntry(jarAdd);

我尝试做类似的事情:

JarEntry jarAdd = new JarEntry(URLDecoder.decode(fileEntryName.replace('\', '/'), "UTF-8")); out.putNextEntry(jarAdd);

但没有成功。

希望有人能帮助我:)

I'm using the class JarOutputStream to deploy a Jar from my system.
I put some files inside the jar using the class JarEntry to do it.

The problem is:
When i put a file that has some "special" characters like "Módulo de Conteúdo Local.wfre", the file goes to the JAR with the name: "M+¦dulo de Conte+¦do Local.wfre"

My original code is something like:

JarEntry jarAdd = new JarEntry(fileEntryName.replace('\', '/'));
out.putNextEntry(jarAdd);

I tried to do something like:

JarEntry jarAdd = new JarEntry(URLDecoder.decode(fileEntryName.replace('\', '/'), "UTF-8"));
out.putNextEntry(jarAdd);

But didn't worked.

Hope someone can help me :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文