JarOutputStream 和 JarEntry 的字符编码错误
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论