문제

I am having problems making my classes see each other when i try to compile using command line.

There's about seven java files originally written on NetBeans, all on the same folder.

When i type javac Main.java, it tells me that it cannot find one of the classes in the same folder.

도움이 되었습니까?

해결책

You should be able to use

javac *.java

It might be worth noting that globbing will cause that to expand into (assuming your folder has four java files a, b, c and Main),

javac a.java b.java c.java Main.java

다른 팁

javac *.java

or

javac file1.java file2.java filewhatever.java
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top