「javazip中文乱码」java汉子乱码

博主:adminadmin 2022-11-27 09:07:07 39

本篇文章给大家谈谈javazip中文乱码,以及java汉子乱码对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

java 中文乱码问题。崩溃了快。

你好,帮你看了一晚上,一直以为是程序转码的问题,看了半天的API和源码,均没有找到可以设置字符编码的地方。上网一查,原来是jdk的问题,网上是这样解释的:

上网查了下,有两种方法,一种修改jdk ZipInputStream及ZipOutputStream 的源文件,比较麻烦,不建议此项.第二种 就是拿来主义,因为 开源项目 Ant 里已经有现成的实现.把ant.jar 加入到 工程下的lib目录即可.

在调试的过程中,发现了一些问题,帮你改正了下,你的程序打包后,里面的层次关系错乱了。只需要将其中的一句改为:

fileIn = new FileInputStream(fileName);

String entryName = fileName.getPath(); //这句,将fileName.getName()修改为getPath

// 生成的压缩包存放在原目录下

zipEntry = new ZipEntry(entryName) ;

这样就正常了。

请问用java编写一个压缩程序,怎样解决压缩文件zip里的文件名乱码问题!

没做过压缩程序,JAVA里面的字符串使用的编码为unicode,ZIP文件里面用的应该是本地编码(中文操作系统用的是GB2312)。

你可以尝试着用类似这样的语句:String str = ( otherStr.getBytes("GB2312") );

祝好运。

请大神帮忙解决一个用java解压缩一个zip压缩格式字节流中文内容乱码问题!

这个问题我有点印象,好像是包的问题。好像不能用zip的那个,换另一个包就好了。具体我也不记得了

java压缩zip文件中文乱码问题

我以前也遇到过这个问题,最后发现java自带的zip压缩没办法解决中文名乱码的问题

你可以使用apache ant的zip类(package: org.apache.tools.zip)来解决这个问题。

java用apache的ZipEntry压缩文件名为中文的word文件时,文件名乱码

apache自带的zip方法有缺陷,没有做中文的判断的,这个是它的一个已知bug。

解决办法:用jdk的rt.jar里面的方法实现就可以了。

可以参考下以下工具类:

import java.io.BufferedInputStream;

import java.io.BufferedOutputStream;

import java.io.Closeable;

import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.util.Enumeration;

import java.util.zip.ZipEntry;

import java.util.zip.ZipFile;

/**

*

* @author gdb

*/

public class ZipUtilAll {

public static final int DEFAULT_BUFSIZE = 1024 * 16;

/**

* 解压Zip文件

*

* @param srcZipFile

* @param destDir

* @throws IOException

*/

public static void unZip(File srcZipFile, String destDir) throws IOException

{

ZipFile zipFile = new ZipFile(srcZipFile);

unZip(zipFile, destDir);

}

/**

* 解压Zip文件

*

* @param srcZipFile

* @param destDir

* @throws IOException

*/

public static void unZip(String srcZipFile, String destDir) throws IOException

{

ZipFile zipFile = new ZipFile(srcZipFile);

unZip(zipFile, destDir);

}

/**

* 解压Zip文件

*

* @param zipFile

* @param destDir

* @throws IOException

*/

public static void unZip(ZipFile zipFile, String destDir) throws IOException

{

Enumeration? extends ZipEntry entryEnum = zipFile.entries();

ZipEntry entry = null;

while (entryEnum.hasMoreElements()) {

entry = entryEnum.nextElement();

File destFile = new File(destDir + entry.getName());

if (entry.isDirectory()) {

destFile.mkdirs();

}

else {

destFile.getParentFile().mkdirs();

InputStream eis = zipFile.getInputStream(entry);

System.out.println(eis.read());

write(eis, destFile);

}

}

}

/**

* 将输入流中的数据写到指定文件

*

* @param inputStream

* @param destFile

*/

public static void write(InputStream inputStream, File destFile) throws IOException

{

BufferedInputStream bufIs = null;

BufferedOutputStream bufOs = null;

try {

bufIs = new BufferedInputStream(inputStream);

bufOs = new BufferedOutputStream(new FileOutputStream(destFile));

byte[] buf = new byte[DEFAULT_BUFSIZE];

int len = 0;

while ((len = bufIs.read(buf, 0, buf.length)) 0) {

bufOs.write(buf, 0, len);

}

} catch (IOException ex) {

throw ex;

} finally {

close(bufOs, bufIs);

}

}

/**

* 安全关闭多个流

*

* @param streams

*/

public static void close(Closeable... streams)

{

try {

for (Closeable s : streams) {

if (s != null)

s.close();

}

} catch (IOException ioe) {

ioe.printStackTrace(System.err);

}

}

/**

* @param args

* @throws java.lang.Exception

*/

public static void main(String[] args) throws Exception

{

// unZip(new File(ZipDemo.class.getResource("D:/123/HKRT-B2B.zip").toURI()), "D:/123/");

unZip("D:/123/123.zip", "D:/123/");

// new File();

}

}

如何解决java程序解压含有中文名的zip压缩包出现乱码

上次利用java自动的java.util.zip.ZipEntry和�0�2java.util.zip.ZipFile来解压zip文件,今天发现程序在读取解压文件时居然报了空指针异常,debug程序后发现时读取不到文件,产生原先是zip压缩文件中含有中文的名称,读取文件名为乱码,

报找不到文件名,所以报了空指针,想到ant构建文件也有这个功能,换了apache的ant.jar居然解决了中文的问题。

备份下。

�0�2import java.io.BufferedReader;

import java.io.File;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.Enumeration;

import org.apache.tools.zip.ZipEntry;

import org.apache.tools.zip.ZipFile;/*** 读取zip压缩文件中文本的内容

* @author fish*/public class ReadZip {

public static void main(String args[]) {try {String fileName = "D:/workspace/java/src/ReadZip.zip";

//构造ZipFile

ZipFile zf = new ZipFile(new File(fileName));

//返回 ZIP file entries的枚举.

Enumeration? extends ZipEntry entries = zf.getEntries();

while (entries.hasMoreElements()) {

ZipEntry ze = entries.nextElement();

System.out.println("name:"+ze.getName());

long size = ze.getSize();

if (size 0) {

System.out.println("Length is " + size);

BufferedReader br = new BufferedReader(

new InputStreamReader(zf.getInputStream(ze)));

String line;

while ((line = br.readLine()) != null) {

关于javazip中文乱码和java汉子乱码的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

The End

发布于:2022-11-27,除非注明,否则均为首码项目网原创文章,转载请注明出处。