• 締切済み

android hello worldのエラー

最近、PCを変えたのを機にandroidプログラミングに挑戦しています。 一通り、環境をそろえ、新しいプロジェクトから作成したものを実行してみましたが、 エラーしてしまいます。 eclipseはADTBundleを日本語化したものを使用しています。 エラーは下記です。 08-14 14:19:19.843: E/AndroidRuntime(1721): at java.lang.reflect.Method.invokeNative(Native Method) 08-14 14:19:19.843: E/AndroidRuntime(1721): at dalvik.system.NativeStart.main(Native Method)

みんなの回答

noname#247307
noname#247307
回答No.2

見たところ、MainActivity.javaの14行目に問題がある、というようですね。 ContentViewの作成に失敗している感じです。14行目には、レイアウトファイルをロードしている処理などが書かれているのではありませんか? 一番多そうなのが、レイアウトのXMLファイルの内容が間違っているためにインスタンス生成に失敗している、というパターンでしょう。XMLのタグを書き間違えているとか、string.xmlから引っ張ってきてる値がないとか、そういった類のことですね。そのあたりを確認してみてはいかがでしょうか。

nurseboy
質問者

お礼

回答ありがとうございました。返事遅くなってすみません。 PCのトラブルで再インストールをしたところ、エラーしなくなりました。 調べていて可能性があるかと思ったのは、SDKManagerでのインストールで必要なものが全部できていなかったのではないかです。 今回はinstallボタンが押せなくなるまでしたので行けたのではないかと思います。 ありがとうございました。

全文を見る
すると、全ての回答が全文表示されます。
noname#247307
noname#247307
回答No.1

エラーは、この2行だけが表示されるのですか? これだけだと、「何かエラーが起きてる」としかわからないのですが……。この前後にもっとエラーメッセージは出ていませんか? もし出ているなら、補足にすべて貼り付けてください。

nurseboy
質問者

補足

フィルタがかかっていたみたいで失礼しました。 08-14 21:23:34.016: D/AndroidRuntime(1646): Shutting down VM 08-14 21:23:34.036: W/dalvikvm(1646): threadid=1: thread exiting with uncaught exception (group=0xacd88ce8) 08-14 21:23:34.076: E/AndroidRuntime(1646): FATAL EXCEPTION: main 08-14 21:23:34.076: E/AndroidRuntime(1646): Process: com.wataru.hajimemo2, PID: 1646 08-14 21:23:34.076: E/AndroidRuntime(1646): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.wataru.hajimemo2/com.wataru.hajimemo2.MainActivity}: android.util.AndroidRuntimeException: You cannot combine swipe dismissal and the action bar. 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2197) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2258) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.ActivityThread.access$800(ActivityThread.java:138) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1209) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.os.Handler.dispatchMessage(Handler.java:102) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.os.Looper.loop(Looper.java:136) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.ActivityThread.main(ActivityThread.java:5026) 08-14 21:23:34.076: E/AndroidRuntime(1646): at java.lang.reflect.Method.invokeNative(Native Method) 08-14 21:23:34.076: E/AndroidRuntime(1646): at java.lang.reflect.Method.invoke(Method.java:515) 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:777) 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602) 08-14 21:23:34.076: E/AndroidRuntime(1646): at dalvik.system.NativeStart.main(Native Method) 08-14 21:23:34.076: E/AndroidRuntime(1646): Caused by: android.util.AndroidRuntimeException: You cannot combine swipe dismissal and the action bar. 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.android.internal.policy.impl.PhoneWindow.requestFeature(PhoneWindow.java:275) 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:2872) 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:3129) 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:303) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.Activity.setContentView(Activity.java:1930) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.support.v7.app.ActionBarActivity.superSetContentView(ActionBarActivity.java:217) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.support.v7.app.ActionBarActivityDelegateICS.setContentView(ActionBarActivityDelegateICS.java:110) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.support.v7.app.ActionBarActivity.setContentView(ActionBarActivity.java:77) 08-14 21:23:34.076: E/AndroidRuntime(1646): at com.wataru.hajimemo2.MainActivity.onCreate(MainActivity.java:14) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.Activity.performCreate(Activity.java:5242) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087) 08-14 21:23:34.076: E/AndroidRuntime(1646): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2161) 08-14 21:23:34.076: E/AndroidRuntime(1646): ... 11 more 08-14 21:28:34.381: I/Process(1646): Sending signal. PID: 1646 SIG: 9

全文を見る
すると、全ての回答が全文表示されます。

関連するQ&A

  • Android アプリ実行時エラー

    Androidアプリを制作中ですが、エラーが出てしまいます。 エラー箇所は把握できているのですがどのようなエラーかがわかりません。 ご回答をよろしくお願いします。 ログ 09-20 03:11:33.307: E/AndroidRuntime(321): FATAL EXCEPTION: main 09-20 03:11:33.307: E/AndroidRuntime(321): java.lang.NullPointerException 09-20 03:11:33.307: E/AndroidRuntime(321): at android.graphics.Canvas.drawText(Native Method) 09-20 03:11:33.307: E/AndroidRuntime(321): at com.example.sudoku.PuzzleView.onDraw(PuzzleView.java:99) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.View.draw(View.java:6880) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewGroup.drawChild(ViewGroup.java:1646) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.View.draw(View.java:6883) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.widget.FrameLayout.draw(FrameLayout.java:357) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewGroup.drawChild(ViewGroup.java:1646) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewGroup.drawChild(ViewGroup.java:1644) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1373) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.View.draw(View.java:6883) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.widget.FrameLayout.draw(FrameLayout.java:357) 09-20 03:11:33.307: E/AndroidRuntime(321): at com.android.internal.policy.impl.PhoneWindow$DecorView.draw(PhoneWindow.java:1862) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewRoot.draw(ViewRoot.java:1522) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewRoot.performTraversals(ViewRoot.java:1258) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.view.ViewRoot.handleMessage(ViewRoot.java:1859) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.os.Handler.dispatchMessage(Handler.java:99) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.os.Looper.loop(Looper.java:123) 09-20 03:11:33.307: E/AndroidRuntime(321): at android.app.ActivityThread.main(ActivityThread.java:3683) 09-20 03:11:33.307: E/AndroidRuntime(321): at java.lang.reflect.Method.invokeNative(Native Method) 09-20 03:11:33.307: E/AndroidRuntime(321): at java.lang.reflect.Method.invoke(Method.java:507) 09-20 03:11:33.307: E/AndroidRuntime(321): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839) 09-20 03:11:33.307: E/AndroidRuntime(321): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597) 09-20 03:11:33.307: E/AndroidRuntime(321): at dalvik.system.NativeStart.main(Native Method)

    • ベストアンサー
    • Java
  • androidアプリ バージョンによるエラー?

    androidアプリ開発初心者です。 指定した時間ごとに壁紙を自動的に変えるアプリを作っています。 エミュレータでアプリを実行したとき、大体のバージョンでなら正常に動くんですが、 エミュレータのバージョンを2.0にするとアプリ起動時に「xxx.xxxx.xxxxが予期せず停止しました」というエラーが出ます。 また実機でテストを行いましたが、 バージョン2.3.5のau c01では正常に起動したものの、 同じくバージョン2.3.5のdocomo F-05Dでは2.0のエミュレータで実行した場合と 同じエラーが出てしまいます。 この場合原因はどんなことが考えられますか? java自体ほとんど初心者なので困り果てています。エラーログの読み方も分かりません。 よろしくお願いします。 【正常に起動が確認できたもの】 1.6(エミュ)、2.3.3(エミュ)、2.3.5(C01)、4.0.3(エミュ) 【エラーが発生したもの】 2.0(エミュ)、2.3.5(F-05D) 【エラー発生時のログ】 03-13 21:19:31.020: D/ddm-heap(222): Got feature list request 03-13 21:19:32.261: W/ResourceType(222): Failure getting entry for 0x7f02000b (t=1 e=11) in package 0: 0xffffffb5 03-13 21:19:32.302: D/AndroidRuntime(222): Shutting down VM 03-13 21:19:32.302: W/dalvikvm(222): threadid=3: thread exiting with uncaught exception (group=0x4001b188) 03-13 21:19:32.302: E/AndroidRuntime(222): Uncaught handler: thread main exiting due to uncaught exception 03-13 21:19:32.351: E/AndroidRuntime(222): java.lang.NullPointerException 03-13 21:19:32.351: E/AndroidRuntime(222): at my.withk.ImageUtils.resizeBitmapToDisplaySize(ImageUtils.java:14) 03-13 21:19:32.351: E/AndroidRuntime(222): at my.withk.WithkemonoActivity.setwall(WithkemonoActivity.java:111) 03-13 21:19:32.351: E/AndroidRuntime(222): at my.withk.WithkemonoActivity$1.handleMessage(WithkemonoActivity.java:155) 03-13 21:19:32.351: E/AndroidRuntime(222): at android.os.Handler.dispatchMessage(Handler.java:99) 03-13 21:19:32.351: E/AndroidRuntime(222): at android.os.Looper.loop(Looper.java:123) 03-13 21:19:32.351: E/AndroidRuntime(222): at android.app.ActivityThread.main(ActivityThread.java:4310) 03-13 21:19:32.351: E/AndroidRuntime(222): at java.lang.reflect.Method.invokeNative(Native Method) 03-13 21:19:32.351: E/AndroidRuntime(222): at java.lang.reflect.Method.invoke(Method.java:521) 03-13 21:19:32.351: E/AndroidRuntime(222): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860) 03-13 21:19:32.351: E/AndroidRuntime(222): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618) 03-13 21:19:32.351: E/AndroidRuntime(222): at dalvik.system.NativeStart.main(Native Method) 03-13 21:19:32.391: I/dalvikvm(222): threadid=7: reacting to signal 3 03-13 21:19:32.411: I/dalvikvm(222): Wrote stack trace to '/data/anr/traces.txt'

  • 明示的にコンパイル

    java eclipse3.5を使ってプログラミングの勉強をしています。 あるプログラムを実行するために、事前にいくつかのプログラムを 明示的にコンパイルしなくてはいけないのですが、明示的にコンパイルする方法が分かりません。 あるサイトを見たら、【プロジェクト】ー>【すべて再ビルド】を 選択すればよいとかかれていたのでやってみたのですが、次のような エラーが出てしまいます。 Exception in thread "main" java.lang.ClassNotFoundException: EchoProtocolFactory 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 java.lang.ClassLoader.loadClassInternal(Unknown Source) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at socket_110.ThreadMain.main(ThreadMain.java:22) このエラーを取り除くには、どうすればよいのでしょうか? 分かる方お願いします。

  • Hello Worldが実行できない

    JAVAを初めて勉強しようとしています。 テキストにしたがって、java_ee_sdk-5_06-windows-ml.exeをインストールし、最初のHello Worldを実行しようとしていますが、エラーが出て進めません。 下のようなエラーが出ます。 C:\>java>javac Test.java Exception in thread "main" java.lang.NoClassDefFoundError: Test Caused by: java.lang.ClassNotFoundException: Test.java at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native M at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown S at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClassInternal(Unknown Sour Could not find the main class: Test.java. Program will exit. 根本的に何かが欠けていると思われるのですが、どのような原因が考えられるでしょうか?

  • eclipseの起動に失敗する

    eclipse IDE for Java EE Developersをダウンロードしてきて解凍。 eclipse.appをダブルクリックするとエラーが出てしまい、起動できません。 環境Mac OS 10.6 java -versionは >java version "1.6.0_26" >Java(TM) SE Runtime Environment (build 1.6.0_26-b03-384-10M3425) >Java HotSpot(TM) 64-Bit Server VM (build 20.1-b02-384, mixed mode) エラーログの中身は !ENTRY org.eclipse.osgi 4 0 2011-07-09 00:31:06.599 !MESSAGE Application error !STACK 1 org.osgi.service.application.ApplicationException: No application id has been found. at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:262) at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577) at org.eclipse.equinox.launcher.Main.run(Main.java:1410) のようなものが出ています。 何かしら手順に問題があるのでしょうか?

  • Tomcat起動時のエラー

    Tomcatを起動すると以下のエラーがでます。 org.apache.commons.digester.Digester endElement 致命的: End event threw exception java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.apache.commons.beanutils.PropertyUtils.setSimpleProperty(PropertyUtils.java:1789) at org.apache.commons.beanutils.PropertyUtils.setNestedProperty(PropertyUtils.java:1684) at org.apache.commons.beanutils.PropertyUtils.setProperty(PropertyUtils.java:1713) at org.apache.commons.beanutils.BeanUtils.setProperty(BeanUtils.java:1019) at org.apache.commons.digester.BeanPropertySetterRule.end(BeanPropertySetterRule.java:245) at org.apache.commons.digester.Digester.endElement(Digester.java:1064) : : at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425) Caused by: java.lang.InstantiationException: javax.servlet.ServletContext at java.lang.Class.newInstance0(Class.java:293) at java.lang.Class.newInstance(Class.java:261) at org.apache.velocity.tools.view.ViewToolInfo.setClassname(ViewToolInfo.java:84) 現在、Strutsとvelocityを導入しています。 エラーはでますが動作には支障がありません。 何が原因なのでしょうか。。 誰か原因がわかる方おられませんか。 ご教授、宜しくお願い致します。

  • マイクラでクラッシュしてしまいます

    ---- Minecraft Crash Report ---- // Who set us up the TNT? Time: 21/02/20 18:56 Description: There was a severe problem during mod loading that has caused the game to fail cpw.mods.fml.common.LoaderException: java.lang.NoSuchFieldError: iron at cpw.mods.fml.common.LoadController.transition(LoadController.java:163) at cpw.mods.fml.common.Loader.preinitializeMods(Loader.java:559) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:243) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:878) at net.minecraft.client.main.Main.main(SourceFile:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) Caused by: java.lang.NoSuchFieldError: iron at cpw.mods.compactsolars.BlockCompactSolar.<init>(BlockCompactSolar.java:38) at cpw.mods.compactsolars.CompactSolars.preInit(CompactSolars.java:48) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at 全文書けなくてすみません

    • ベストアンサー
    • Java
  • マイクラがクラッシュします。

    Time: 21/08/02 6:13 Description: Initializing game java.lang.RuntimeException at cpw.mods.fml.common.registry.VillagerRegistry.registerVillagerId(VillagerRegistry.java:125) at wa.Wa.init(Wa.java:96) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:532) at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:737) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:311) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:552) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:878) at net.minecraft.client.main.Main.main(SourceFile:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: ---------------------------------------------------------------------------------------

    • ベストアンサー
    • Java
  • マインクラフトのクラッシュの原因を教えてほしい

    ↓クラッシュレポートです。 Description: There was a severe problem during mod loading that has caused the game to fail cpw.mods.fml.common.LoaderException: java.lang.NoClassDefFoundError: net/minecraftforge/fml/common/network/IGuiHandler at cpw.mods.fml.common.LoadController.transition(LoadController.java:163) at cpw.mods.fml.common.Loader.loadMods(Loader.java:544) at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:480) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:878) at net.minecraft.client.main.Main.main(SourceFile:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) Caused by: java.lang.NoClassDefFoundError: net/minecraftforge/fml/common/network/IGuiHandler at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:348) at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:440) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74) at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304) at com.google.common.eventbus.EventBus.post(EventBus.java:275) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119) at cpw.mods.fml.common.Loader.loadMods(Loader.java:513) ... 10 more Caused by: java.lang.ClassNotFoundException: net.minecraftforge.fml.common.network.IGuiHandler at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ... 35 more Caused by: java.lang.NullPointerException at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:182) ... 37 more

  • データベースに接続できません

    データベースに接続できません java初心者です eclipseで開発を行っているのですが、どうもエラーがでてきて接続できません よろしくおねがいします エラー内容 Exception in thread "main" java.lang.NoClassDefFoundError: DataBase Caused by: java.lang.ClassNotFoundException: DataBase at java.net.URLClassLoader$1.run(URLClassLoader.java:200) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:188) at java.lang.ClassLoader.loadClass(ClassLoader.java:315) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:330) at java.lang.ClassLoader.loadClass(ClassLoader.java:250) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:398)

FAXドライバー inf の場所は?
このQ&Aのポイント
  • Windows11でのFAXドライバーのインストールについて困っています。
  • プリンタドライバは手動でインストールできましたが、FAXドライバーのinfファイルがどこにあるか分からず困っています。
  • 使用環境はWindows11で、無線LAN接続で公式サイトからダウンロードしたドライバーを使用しています。電話回線はひかり回線です。
回答を見る