Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は小さな Java アプリを作成し、Netbeans を使用して jar ファイルを作成します。Windows 7 PC では正常に動作しますが、Win XP では動作しません。「メイン クラスが見つかりませんでした」というエラーが返されます。これを解決するにはどうすればよいですか?
Windows XP でメイン クラスを使用java -classpath . your_main_class_nameして実行するか、Windows XP で NetBeans を使用してアプリケーションを再ビルドして実行します。jar ファイル内のマニフェスト ファイルに Windows XP の有効なクラスパスが含まれている可能性があります。
java -classpath . your_main_class_name