0

プロジェクトを Eclipse で実行しようとすると、次のエラーが発生します。

Apr 11, 2014 8:02:17 AM net.minecraft.launchwrapper.LogWrapper log
INFO: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker
Apr 11, 2014 8:02:21 AM net.minecraft.launchwrapper.LogWrapper log
SEVERE: Unable to launch
java.lang.ClassNotFoundException: cpw.mods.fml.common.launcher.FMLTweaker
      at java.net.URLClassLoader$1.run(Unknown Source)
      at java.net.URLClassLoader$1.run(Unknown Source)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:102)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at java.lang.ClassLoader.loadClass(Unknown Source)
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Unknown Source)
      at net.minecraft.launchwrapper.Launch.launch(Launch.java:94)
      at net.minecraft.launchwrapper.Launch.main(Launch.java:27)

しかし、プロジェクトに含まれるすべてのファイルがあります。

これはこれと非常によく似た問題ですが、クラスパスを更新する解決策を試しましたが、うまくいきませんでした助言がありますか?

ありがとうございます!

4

2 に答える 2

1

必要なすべてのパッケージがインポートされているかどうかわからない場合は、このエラーが発生するクラス内で Ctrl + Shift + O を押し、必要なすべてのパッケージをインポートしてコードを再度コンパイルします。

于 2014-04-11T14:32:54.353 に答える
0
This problem clearly specifies it lacks class files.

Steps to narrow done this problem : 

First Approach
By clicking - Ctrl+Shift+T
Paste the package name cpw.mods.fml.common.launcher.FMLTweaker, you should be able to figure out, which jar/source file hold this.


Second Approach
Go to Build Path->Configure Build Path ->Order and Export-> Arrange the folders according to the sequence they have to be loaded. (Sometimes if A expects B but B is loaded after A, causes this issue)


Third Approach
Try to import the packages using Ctrl+Shift+o , which automatically gives the suggestions to select from . Pick the right one.

Fourth Approach,
This might be even happening because of the same name class conflicts.(Same Class Name used in multiples jars/source files) . Import the right package one from it.
于 2014-04-11T14:37:30.473 に答える