Jump to content

EdBainbridge

Members
  • Posts

    3
  • Joined

  • Last visited

About EdBainbridge

  • Birthday 03/18/1995

EdBainbridge's Achievements

Dirt

Dirt (1/9)

0

Reputation

  1. Title: Tekkit Sever 3.1.2 errors Version: 3.1.1 OS: Windows Vista Home Premium SP2 64-Bit Java Version: Java-7 Description of Problem: I start the batch file (Launch.bat) and it pops up with errors strait away........ Error Messages: C:\Users\Ed\Desktop\!!!TEKKIT SERVER!!!>Java -Xmx2G -Xms1G -jar Tekkit.jar nogui java.lang.NullPointerException at java.io.Reader.<init>(Unknown Source) at java.io.InputStreamReader.<init>(Unknown Source) at net.minecraft.server.AchievementMap.<init>(SourceFile:15) at net.minecraft.server.AchievementMap.<clinit>(SourceFile:9) at net.minecraft.server.Statistic.d(SourceFile:38) at net.minecraft.server.CounterStatistic.d(SourceFile:15) at net.minecraft.server.StatisticList.<clinit>(StatisticList.java:17) at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:634) at org.bukkit.craftbukkit.Main.main(Main.java:136) java.lang.ExceptionInInitializerError at net.minecraft.server.LocaleI18n.<clinit>(SourceFile:5) at net.minecraft.server.Item.l(Item.java:293) at net.minecraft.server.StatisticList.a(StatisticList.java:124) at net.minecraft.server.StatisticList.c(StatisticList.java:59) at net.minecraft.server.Item.<clinit>(Item.java:361) at net.minecraft.server.Block.<clinit>(Block.java:1211) at net.minecraft.server.StatisticList.a(StatisticList.java:102) at net.minecraft.server.StatisticList.<clinit>(StatisticList.java:40) at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:634) at org.bukkit.craftbukkit.Main.main(Main.java:136) Caused by: java.lang.NullPointerException at java.io.Reader.<init>(Unknown Source) at java.io.InputStreamReader.<init>(Unknown Source) at net.minecraft.server.LocaleLanguage.b(LocaleLanguage.java:33) at net.minecraft.server.LocaleLanguage.<init>(LocaleLanguage.java:21) at net.minecraft.server.LocaleLanguage.<clinit>(LocaleLanguage.java:14) ... 10 more C:\Users\Ed\Desktop\!!!TEKKIT SERVER!!!>pause Press any key to continue . . . Error Log: C:\Users\Ed\Desktop\!!!TEKKIT SERVER!!!>Java -Xmx2G -Xms1G -jar Tekkit.jar nogui java.lang.NullPointerException at java.io.Reader.<init>(Unknown Source) at java.io.InputStreamReader.<init>(Unknown Source) at net.minecraft.server.AchievementMap.<init>(SourceFile:15) at net.minecraft.server.AchievementMap.<clinit>(SourceFile:9) at net.minecraft.server.Statistic.d(SourceFile:38) at net.minecraft.server.CounterStatistic.d(SourceFile:15) at net.minecraft.server.StatisticList.<clinit>(StatisticList.java:17) at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:634) at org.bukkit.craftbukkit.Main.main(Main.java:136) java.lang.ExceptionInInitializerError at net.minecraft.server.LocaleI18n.<clinit>(SourceFile:5) at net.minecraft.server.Item.l(Item.java:293) at net.minecraft.server.StatisticList.a(StatisticList.java:124) at net.minecraft.server.StatisticList.c(StatisticList.java:59) at net.minecraft.server.Item.<clinit>(Item.java:361) at net.minecraft.server.Block.<clinit>(Block.java:1211) at net.minecraft.server.StatisticList.a(StatisticList.java:102) at net.minecraft.server.StatisticList.<clinit>(StatisticList.java:40) at net.minecraft.server.MinecraftServer.main(MinecraftServer.java:634) at org.bukkit.craftbukkit.Main.main(Main.java:136) Caused by: java.lang.NullPointerException at java.io.Reader.<init>(Unknown Source) at java.io.InputStreamReader.<init>(Unknown Source) at net.minecraft.server.LocaleLanguage.b(LocaleLanguage.java:33) at net.minecraft.server.LocaleLanguage.<init>(LocaleLanguage.java:21) at net.minecraft.server.LocaleLanguage.<clinit>(LocaleLanguage.java:14) ... 10 more C:\Users\Ed\Desktop\!!!TEKKIT SERVER!!!>pause Press any key to continue . . .
  2. i am having the same problem if you run the batch file as an administrator it gets rid of the list of 15 or so errors however it says can't find tekkit.jar but if you tell it whre it is before it exectutes the launcher the error's come back i am in this cicle of badly coded java and it's pissing me off
  3. A java.lang.NullPointerException occurs when a Java application or Java applet has been badly coded. Typically, the Java program (and consequently, the programmer) attempted to access the reference or handle to a Java object that did not exist. Here's an analogy that may help: You have a piece of land on which you intend to build your own house, but you haven't built it yet. This is the equivalent of creating (or owning) a Java object reference (also called an address). Before you build the house, you accidentally give out your address to people, saying "That's my home address" (even though there's nothing there, not even a sign saying "My House"). This is the equivalent of wrongly using the Java object reference (or address) without actually having created a Java object within it. The postman, your friends and your relatives drive to the address but find nothing there and think it's an error. This is the equivalent of getting a NullPointerException. If you're seeing the exception when using an existing Java application what displays charts, then the application has been badly coded. The wrong n' dirty way of quickly solving (or actually suppressing) the exception is to encapsulate the offending code in a try-catch block and handle the catch in some quiet, elegant way. The right way of solving the exception is to figure out the line causing the problem, and trace it's source, reason and data.
×
×
  • Create New...