weblogic12C出现“java.lang.ArrayIndexOutOfBoundsException: 48188”

最近将10G的一个项目转移到12C出现数组越界的问题:

解决办法:

jaxen-1.1.1.jar
xom-1.0.jar
icu4j-2.6.1.jar

把这三个jar包删除后就可以正常部署了。

时间: 2024-08-27 18:09:53

weblogic12C出现“java.lang.ArrayIndexOutOfBoundsException: 48188”的相关文章

java.lang.ArrayIndexOutOfBoundsException

1.错误描述 Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0 at com.you.model.Args.main(Args.java:18) 2.错误原因 /** * */ package com.you.model; /** * @author YHD * */ public class Args { /** * @param args */ public static void main

java.lang.ArrayIndexOutOfBoundsException: 2

1.错误描述 java.lang.ArrayIndexOutOfBoundsException: 2 at report.service.impl.ExportServiceImpl$7.setSheetValue(ExportServiceImpl.java:2649) at utils.ExcelUtil.getWorkbook(ExcelUtil.java:45) at report.service.impl.ExportServiceImpl.exportStation(ExportSe

java.lang.ArrayIndexOutOfBoundsException: 100

在用SaxParser做XML解析的时候碰到如下错误信息: java.lang.ArrayIndexOutOfBoundsException: 100         at com.sun.org.apache.xerces.internal.impl.XMLEntityScanner.scanLiteral(XMLEntityScanner.java:1145)         at com.sun.org.apache.xerces.internal.impl.XMLScanner.scan

AndroidStudio编译出现Caused by: java.lang.ArrayIndexOutOfBoundsException: 4其中一种的原因

Caused by: java.lang.ArrayIndexOutOfBoundsException: 4 at com.android.tools.profiler.asm.ClassReader.a(Unknown Source) at com.android.tools.profiler.asm.ClassReader.a(Unknown Source) at com.android.tools.profiler.asm.ClassReader.a(Unknown Source) at

android listview Caused by: java.lang.ArrayIndexOutOfBoundsException: length=3; index=3

android listview 适配器在多种类型viewType报错: Caused by: java.lang.ArrayIndexOutOfBoundsException: length=3; index=3 2 at android.widget.AbsListView$RecycleBin.addScrapView(AbsListView.java:6822) 3 at android.widget.AbsListView.trackMotionScroll(AbsListView.j

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1

场景:eclipse中编写java中用到数组 问题: 程序不报错但是运行过程中 终止,显示字样 “ Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1 ” 截图: 原因: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException 这句话表示异常出现在main这个线程里面,错误是java.lang.Ar

ListView中使用type需要注意的东西 java.lang.ArrayIndexOutOfBoundsException: length=2; index=2 addScrapView

ListView中使用type需要注意的东西 在使用ListView时,如果使用了getItemViewType, 记得他的值一定要是从0开始计数的. 且要覆盖getViewTypeCount方法.并且让getViewTypeCount>getItemViewType 否则会有数组越界异常: 10-21 20:18:16.231: E/AndroidRuntime(4475): java.lang.ArrayIndexOutOfBoundsException: length=3; index=3

java.lang.ArrayIndexOutOfBoundsException 异常分析及解决

参考:http://blog.csdn.net/javaeeteacher/article/details/4485834 这是一个非常常见的异常,从名字上看是数组下标越界错误,解决方法就是查看为什么下标越界. 下面是一个错误示例: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2 at test4.State.nextStates(State.java:93) at test4.State.m

Java - 错误: "java.lang.ArrayIndexOutOfBoundsException: length=1; index=1"

错误: "java.lang.ArrayIndexOutOfBoundsException: length=1; index=1" 本文地址: http://blog.csdn.net/caroline_wendy/article/details/24464947 Java中, 错误: "java.lang.ArrayIndexOutOfBoundsException: length=1; index=1" ; 意思: 数组(Array)索引(Index)越界(Ou