I have logged in and played several times before but cannot since yesterday. I log in and it starts loading but fails to load. it keeps giving me an error message. I updated to the new Java and still doesnt work, I even unistalled new version and went back to old version of java but still nothing.
--- BEGIN ERROR REPORT 8ac62bc1 --------
Generated 9/7/12 11:05 PM
java.lang.ArrayIndexOutOfBoundsException: -99
at org.lwjgl.input.Keyboard.getKeyName(Keyboard.java:421)
at aoq.a(SourceFile:77)
at auw.b(SourceFile:706)
at net.minecraft.client.Minecraft.J(SourceFile:607)
at net.minecraft.client.Minecraft.run(SourceFile:535)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 76337246 ----------
java.lang.ArrayIndexOutOfBoundsException: -99
at org.lwjgl.input.Keyboard.getKeyName(Keyboard.java:421)
at aoq.a(SourceFile:77)
at auw.b(SourceFile:706)
there's 2 problems here one, that java is giving more flags still it uses 816mb of 989mb , you probably will run out of memory sometime .
the other problem that java.lang.arrayIndexOutOfBoundsException.
means
Thrown to indicate that an array has been accessed with an illegal index. The index is either negative or greater than or equal to the size of the array.
So for example:
int[] array = new int[5];
int boom = array[10]; // Throws the exception
One problem people sometimes run into is thinking that arrays are 1-indexed, e.g.
int[] array = new int[5];
// ... populate the array here ...
for (int index = 1; index <= array.length; index++)
{
System.out.println(array[index]);
}
That will miss out the first element (index 0) and throw an exception when index is 5. The valid indexes here are 0-4 inclusive. The correct, idiomatic for statement here would be:
for (int index = 0; index < array.length; index++)
In short words.
a file in the LWJGL is damage and you need to updated it.
--- BEGIN ERROR REPORT 8ac62bc1 --------
Generated 9/7/12 11:05 PM
- Minecraft Version: 1.3.2
- Operating System: Windows Vista (x86) version 6.0
- Java Version: 1.7.0_07, Oracle Corporation
- Java VM Version: Java HotSpot(TM) Client VM (mixed mode), Oracle Corporation
- Memory: 855793656 bytes (816 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)
- JVM Flags: 3 total; -Xbootclasspath/a:C:\\PROGRA~1\\Java\\jre7\\lib\\deploy.jar;C:\\PROGRA~1\\Java\\jre7\\lib\\javaws.jar;C:\\PROGRA~1\\Java\\jre7\\lib\\plugin.jar -Xmx1g -Xms1024M
- LWJGL: 2.4.2
- OpenGL: ATI Radeon HD 3200 Graphics GL version 2.1.7415 Release, ATI Technologies Inc.
- Is Modded: Probably not
- Type: Client
- Texture Pack: Default
- Profiler Position: N/A (disabled)
- World MpServer Entities: 5 total; [atg['risbell'/106, l='MpServer', x=219.50, y=70.24, z=-95.50], mt['Pig'/3, l='MpServer', x=195.42, y=67.41, z=-150.47], mu['Sheep'/28, l='MpServer', x=244.03, y=66.00, z=-171.43], ni['Falling Block'/197, l='MpServer', x=102.50, y=45.46, z=-172.50], ni['Falling Block'/198, l='MpServer', x=102.50, y=45.46, z=-169.50]]
- World MpServer Players: 1 total; [atg['risbell'/106, l='MpServer', x=219.50, y=70.24, z=-95.50]]
- World MpServer Chunk Stats: MultiplayerChunkCache: 290
- Forced Entities: 5 total; [mt['Pig'/3, l='MpServer', x=195.42, y=67.41, z=-150.47], ni['Falling Block'/197, l='MpServer', x=102.50, y=45.46, z=-172.50], ni['Falling Block'/198, l='MpServer', x=102.50, y=45.46, z=-169.50], mu['Sheep'/28, l='MpServer', x=244.03, y=66.00, z=-171.43], atg['risbell'/106, l='MpServer', x=219.50, y=70.24, z=-95.50]]
- Retry Entities: 0 total; []
java.lang.ArrayIndexOutOfBoundsException: -99
at org.lwjgl.input.Keyboard.getKeyName(Keyboard.java:421)
at aoq.a(SourceFile:77)
at auw.b(SourceFile:706)
at net.minecraft.client.Minecraft.J(SourceFile:607)
at net.minecraft.client.Minecraft.run(SourceFile:535)
at java.lang.Thread.run(Unknown Source)
--- END ERROR REPORT 76337246 ----------
-
View User Profile
-
View Posts
-
Send Message
Retired Staffjava.lang.ArrayIndexOutOfBoundsException: -99
at org.lwjgl.input.Keyboard.getKeyName(Keyboard.java:421)
at aoq.a(SourceFile:77)
at auw.b(SourceFile:706)
there's 2 problems here one, that java is giving more flags still it uses 816mb of 989mb , you probably will run out of memory sometime .
the other problem that java.lang.arrayIndexOutOfBoundsException.
means
Thrown to indicate that an array has been accessed with an illegal index. The index is either negative or greater than or equal to the size of the array.
So for example:
int[] array = new int[5];
int boom = array[10]; // Throws the exception
One problem people sometimes run into is thinking that arrays are 1-indexed, e.g.
int[] array = new int[5];
// ... populate the array here ...
for (int index = 1; index <= array.length; index++)
{
System.out.println(array[index]);
}
That will miss out the first element (index 0) and throw an exception when index is 5. The valid indexes here are 0-4 inclusive. The correct, idiomatic for statement here would be:
for (int index = 0; index < array.length; index++)
In short words.
a file in the LWJGL is damage and you need to updated it.
http://lwjgl.org/download.php