複数のファイルにまたがる複数のクラスを含む Java プロジェクトがあります。
これをコンパイルして動作させるにはどうすればよいですか?
jCreatorを使用してこれをコンパイルする方法を誰でも提案できますか(antのようなビルドツールを使用せずに)
Ant/Maven などを使用せずに (これらを使用することを強くお勧めします。プロジェクトが複雑になるにつれて、コマンド ラインは維持できなくなります。また、スクリプトを作成しない限り、次にビルドするときに前回どのように呼び出したかを覚えておく必要があります)。コマンドラインですべての .java ファイルをコンパイラに渡すことができるはずです。たとえば、Unix の場合:
javac `find . -name \*.java'
または同様のもの(クラスパスなどに追加の引数が必要になる可能性があります)
You should just be able to compile each file separately and then run the class with the "main" function ie the one that starts of your program. Its probably a good idea to compile the ones that don't depend on any others first so that when each ones compiled all the classes used in that class are already compiled but I don't know if you need to do this.