本文的目的是介绍H2数据库表上的SQL查询引发ArrayIndexOutOfBoundsException的详细情况,特别关注h2数据库查询语句的相关信息。我们将通过专业的研究、有关数据的分析等多种方
本文的目的是介绍H2数据库表上的SQL查询引发ArrayIndexOutOfBoundsException的详细情况,特别关注h2数据库查询语句的相关信息。我们将通过专业的研究、有关数据的分析等多种方式,为您呈现一个全面的了解H2数据库表上的SQL查询引发ArrayIndexOutOfBoundsException的机会,同时也不会遗漏关于android – TextView样式ArrayIndexOutOfBoundsException、ArrayIndexOutOfBoundsException 160、ArrayIndexOutOfBoundsException >> arr lenght 引起的异常、ArrayIndexOutOfBoundsException数组越界 --- 之二的知识。
本文目录一览:- H2数据库表上的SQL查询引发ArrayIndexOutOfBoundsException(h2数据库查询语句)
- android – TextView样式ArrayIndexOutOfBoundsException
- ArrayIndexOutOfBoundsException 160
- ArrayIndexOutOfBoundsException >> arr lenght 引起的异常
- ArrayIndexOutOfBoundsException数组越界 --- 之二
H2数据库表上的SQL查询引发ArrayIndexOutOfBoundsException(h2数据库查询语句)
我有一个H2数据库,可以在其中运行某些查询,而另一些则抛出ArrayIndexOutOfBoundsException
。
例如:
SELECT COLUMN_1 FROM MY_TABLE; // works fineSELECT COUNT(COLUMN_1) FROM MY_TABLE; // gives following error message:[Error Code: 50000, SQL State: HY000] General error: "java.lang.ArrayIndexOutOfBoundsException"; SQL statement: SELECT COUNT(COLUMN_1) FROM MY_TABLE [50000-167]
产生此错误消息的原因是什么?
答案1
小编典典该错误信息的原因是 数据库损坏。
我通过使用H2恢复工具解决了该问题。 步骤如下:
创建恢复脚本
C:\PATH_TO_CORRUPT_DB>java -cp C:\PATH_TO_MY_H2\h2.jar org.h2.tools.Recover
删除旧的db文件(当然,首先要制作备份副本;-)
重新创建数据库
C:\PATH_TO_CORRUPT_DB>java -cp C:\PATH_TO_MY_H2\h2.jar org.h2.tools.RunScript -url jdbc:h2:PATH_TO_CORRUPT_DB\NAME_OF_DB -script NAME_OF_SCRIPT_FROM_STEP_ONE.sql
在这里,您可以找到有关H2恢复工具的更详细的使用说明
android – TextView样式ArrayIndexOutOfBoundsException
我从来没有重现过这次崩溃,它似乎只是来自三星galaxy设备(虽然不太确定).来自sdk 4.1版& 4.2& 4.3
这是完整的StackTrace:
android.view.InflateException: Binary XML file line #31: Error inflating class <unkNown> at android.view.LayoutInflater.createView(LayoutInflater.java:613) at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56) at android.view.LayoutInflater.onCreateView(LayoutInflater.java:660) at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685) at android.view.LayoutInflater.rInflate(LayoutInflater.java:746) at android.view.LayoutInflater.inflate(LayoutInflater.java:489) at android.view.LayoutInflater.inflate(LayoutInflater.java:396) at com.android.internal.widget.ActionBarContextView.initClose(ActionBarContextView.java:262) at com.android.internal.widget.ActionBarContextView.onConfigurationChanged(ActionBarContextView.java:136) at android.view.View.dispatchConfigurationChanged(View.java:7761) at android.view.ViewGroup.dispatchConfigurationChanged(ViewGroup.java:1056) at android.view.ViewGroup.dispatchConfigurationChanged(ViewGroup.java:1060) at android.view.ViewGroup.dispatchConfigurationChanged(ViewGroup.java:1060) at android.view.ViewGroup.dispatchConfigurationChanged(ViewGroup.java:1060) at android.view.ViewGroup.dispatchConfigurationChanged(ViewGroup.java:1060) at android.view.ViewRootImpl.updateConfiguration(ViewRootImpl.java:2800) at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1509) at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1107) at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:4464) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:725) at android.view.Choreographer.doCallbacks(Choreographer.java:555) at android.view.Choreographer.doFrame(Choreographer.java:525) at android.view.Choreographer$FramedisplayEventReceiver.run(Choreographer.java:711) at android.os.Handler.handleCallback(Handler.java:615) at android.os.Handler.dispatchMessage(Handler.java:92) at android.os.Looper.loop(Looper.java:137) at android.app.ActivityThread.main(ActivityThread.java:4895) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:511) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:994) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:761) at dalvik.system.NativeStart.main(Native Method) Caused by: java.lang.reflect.InvocationTargetException at java.lang.reflect.Constructor.constructNative(Native Method) at java.lang.reflect.Constructor.newInstance(Constructor.java:417) at android.view.LayoutInflater.createView(LayoutInflater.java:587) ... 31 more Caused by: java.lang.Arrayindexoutofboundsexception: length=24; index=691 at android.content.res.StringBlock.get(StringBlock.java:64) at android.content.res.XmlBlock$Parser.getPooledString(XmlBlock.java:458) at android.content.res.TypedArray.loadStringValueAt(TypedArray.java:720) at android.content.res.TypedArray.getString(TypedArray.java:124) at android.widget.TextView.<init>(TextView.java:916) at android.widget.TextView.<init>(TextView.java:562) ... 34 more
我想也许这是由我给TextView的风格(特别是fontFamily)引起的.所以这里是我的价值观风格-v16> styles.xml(values-v16):
<style name="TextViewHour"> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_marginLeft">5dip</item> <item name="android:ellipsize">end</item> <item name="android:maxLines">1</item> <item name="android:textSize">@dimen/text_hour_size</item> <item name="android:textColor">@color/item_hour</item> <item name="android:fontFamily">sans-serif-condensed</item> <item name="android:textStyle">bold</item> </style>
来自价值观> styles.xml
<style name="TextViewHour"> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_marginLeft">5dip</item> <item name="android:ellipsize">end</item> <item name="android:maxLines">1</item> <item name="android:textSize">@dimen/text_hour_size</item> <item name="android:textColor">@color/item_hour</item> <item name="android:textStyle">bold</item> </style>
这里是一个使用TextView的例子:
<TextViewandroid:id="@+id/name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/item_date_separator"/>
我对我的应用程序在某些设备上崩溃的原因一无所知.
所以,如果有人有想法,我全都耳朵!
编辑:似乎它不仅在galaxy设备上,我也有这个Nexus 7的崩溃.
解决方法
public class MyTextView extends TextView { public MyTextView(Context context,AttributeSet attrs,int defStyle) { super(context,attrs,defStyle); init(); } public MyTextView(Context context,AttributeSet attrs) { super(context,attrs); init(); } public MyTextView(Context context) { super(context); init(); } private void init() { Typeface tf = Typeface.createFromAsset(getContext().getAssets(),"your_font.ttf"); setTypeface(tf); }
}
并在你的xml中.
<com.mypackage.test.MyTextView android:id="@+id/txt" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:layout_weight="1" android:text="custom text view. " android:textSize="30dip" android:textColor="#ff0000" >
ArrayIndexOutOfBoundsException 160
解决方法,升级fastjson的版本
ArrayIndexOutOfBoundsException >> arr lenght 引起的异常
如何解决ArrayIndexOutOfBoundsException >> arr lenght 引起的异常?
对 Arrayindexoutofboundsexception 有点熟悉但无法解决。
突出显示错误所在的行。
如果为数组的长度引入 5,程序将指出为什么 d 可能等于 arr 的长度值(在本例中为 5)。
我知道这是一个愚蠢的错误,因此我很生气......
已突出显示错误的行。
任何帮助??
enter image description here
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)
ArrayIndexOutOfBoundsException数组越界 --- 之二
现象:
Caused by: java.lang.ArrayIndexOutOfBoundsException: 7786
at org.springframework.asm.ClassReader.readClass(Unknown Source)
at org.springframework.asm.ClassReader.accept(Unknown Source)
at org.springframework.asm.ClassReader.accept(Unknown Source)
at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:54)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:80)
at org.springframework.core.type.classreading.CachingMetadataReaderFactory.getMetadataReader(CachingMetadataReaderFactory.java:101)
at org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider.findCandidateComponents(ClassPathScanningCandidateComponentProvider.java:236)
... 45 more
问题及解决方案:
executor.execute(() -> threadTask(activityId, mobiles, content));
改为:
executor.execute(new Runnable() { @Override public void run() { threadTask(activityId, mobiles, content); } });
关于H2数据库表上的SQL查询引发ArrayIndexOutOfBoundsException和h2数据库查询语句的介绍已经告一段落,感谢您的耐心阅读,如果想了解更多关于android – TextView样式ArrayIndexOutOfBoundsException、ArrayIndexOutOfBoundsException 160、ArrayIndexOutOfBoundsException >> arr lenght 引起的异常、ArrayIndexOutOfBoundsException数组越界 --- 之二的相关信息,请在本站寻找。
本文标签: