java解压rar|An unexpected error has been detected by Java Runtime Environment:

HappyKeKe 2010-08-13 03:16:37
java解压rar文件出错

public void unRarFile(String rarFileName,String extPlace)
{
Archive archive = null;
File out = null;
File file = null;
File dir = null;
FileOutputStream os = null;
FileHeader fh = null;
String path, dirPath = "";
try
{
file = new File(rarFileName);
System.out.println("file.getName = "+file.getName());
archive = new Archive(file);
}
catch (RarException e1)
{
e1.printStackTrace();
}
catch (IOException e1)
{
e1.printStackTrace();
}
finally
{
if (file != null)
{
file = null;
}
}
if (archive != null)
{
try
{
fh = archive.nextFileHeader();
while (fh != null)
{
path = (extPlace + fh.getFileNameString().trim()).replaceAll("\\\\", "/");
int end = path.lastIndexOf("/");
if (end != -1)
{
dirPath = path.substring(0, end);
}
try
{
dir = new File(dirPath);
if (!dir.exists())
{
dir.mkdirs();
}
}
catch (RuntimeException e1)
{
e1.printStackTrace();
}
finally
{
if (dir != null)
{
dir = null;
}
}
if (fh.isDirectory())
{
fh = archive.nextFileHeader();
continue;
}

out = new File(extPlace + fh.getFileNameString().trim());
try
{
os = new FileOutputStream(out);
archive.extractFile(fh, os);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (RarException e)
{
e.printStackTrace();
}
finally
{
if (os != null)
{
try
{
os.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
if (out != null)
{
out = null;
}
}
fh = archive.nextFileHeader();
}
}
catch (RuntimeException e)
{
e.printStackTrace();
}
finally
{
fh = null;
if (archive != null)
{
try
{
archive.close();
} catch (IOException e)
{
e.printStackTrace();
}
}
}
}
}

错误如下

2010-6-16 15:13:56 de.innosystec.unrar.Archive setFile
警告: exception in archive constructor maybe file is encrypted or currupt
java.lang.NullPointerException
at de.innosystec.unrar.Archive.readHeaders(Archive.java:233)
at de.innosystec.unrar.Archive.setFile(Archive.java:122)
at de.innosystec.unrar.Archive.<init>(Archive.java:106)
at de.innosystec.unrar.Archive.<init>(Archive.java:96)
at ZipManager.unRarFile(ZipManager.java:371)
at ZipManager.main(ZipManager.java:490)


调试的时候出现下面这个是什么
[code=Java][
#
# An unexpected error has been detected by Java Runtime Environment:
#
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6da669a2, pid=1752, tid=3944
#
# Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
# Problematic frame:
# V [jvm.dll+0x1b69a2]
#
# An error report file with more information is saved as:
# E:\exercise\zip\hs_err_pid1752.log
#
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
#
/code]
先前在别的地方用都好的 不知道什么原因 大侠请帮忙啊
...全文
149 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
HappyKeKe 2010-08-18
  • 打赏
  • 举报
回复
偶看不懂啊
AC903919 2010-08-16
  • 打赏
  • 举报
回复
它不是说
E:\exercise\zip\hs_err_pid1752.log
在这个地方可以看到错误日志么,你先去查查看啊~


Java VM: Java HotSpot(TM) Client VM (11.3-b02 mixed mode windows-x86)
貌似是平台有问题~
HappyKeKe 2010-08-15
  • 打赏
  • 举报
回复
悲剧啊悲剧
HappyKeKe 2010-08-13
  • 打赏
  • 举报
回复
没人理我啊
HappyKeKe 2010-08-13
  • 打赏
  • 举报
回复
错误是
at ZipManager.unRarFile(ZipManager.java:371)

archive = new Archive(file); //这行
2022 / 01/ 30: 新版esptool 刷micropython固件指令不是 esptool.py cmd... 而是 esptool cmd... 即可;另外rshell 在 >= python 3.10 的时候出错解决方法可以查看:  已于2022年发布的: 第二章:修复rshell在python3.10出错 免费内容: https://edu.csdn.net/course/detail/29666 micropython语法和python3一样,编写起来非常方便。如果你快速入门单片机玩物联网而且像轻松实现各种功能,那绝力推荐使用micropython。方便易懂易学。 同时如果你懂C语音,也可以用C写好函数并编译进micropython固件里然后进入micropython调用(非必须)。 能通过WIFI联网(2.1章),也能通过sim卡使用2G/3G/4G/5G联网(4.5章)。 为实现语音控制,本教程会教大家使用tensorflow利用神经网络训练自己的语音模型并应用。为实现通过网页控制,本教程会教大家linux(debian10 nginx->uwsgi->python3->postgresql)网站前后台入门。为记录单片机传输过来的数据, 本教程会教大家入门数据库。  本教程会通过通俗易懂的比喻来讲解各种原理与思路,并手把手编写程序来实现各项功能。 本教程micropython版本是 2019年6月发布的1.11; 更多内容请看视频列表。  学习这门课程之前你需要至少掌握: 1: python3基础(变量, 循环, 函数, 常用库, 常用方法)。 本视频使用到的零件与淘宝上大致价格:     1: 超声波传感器(3)     2: MAX9814麦克风放大模块(8)     3: DHT22(15)     4: LED(0.1)     5: 8路5V低电平触发继电器(12)     6: HX1838红外接收模块(2)     7:红外发射管(0.1),HX1838红外接收板(1)     other: 电表, 排线, 面包板(2)*2,ESP32(28)  

67,513

社区成员

发帖
与我相关
我的任务
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
  • Java EE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧