3
votes

When I use javac to compile many independent .java file, I find if one fails, no .class file will generate. For example, I try this command:

javac A.java B.java C.java -Xmaxerrs 200 -Xmaxwarns 200

There are no dependencies among these *.java files. When I use the command above to compile these *.java files, I find:
Case 1: All of the *.java files are correct. I will get A.class, B.class and C.class after javac's compilation.
Case 2: A.java has some errors, B.java and C.java are both correct. After compilation, I can't get any .class file.

How can I get B.class and C.class after javac's compilation in Case 2? Is there any javac option to solve this problem?

4
Well, the most obvious solution is to fix A.java... - shmosel
You could compile them separately, and if you can't do that maybe they have a dependency on A. - Tim Biegeleisen
No, there is no javac option to solve this problem. - user207421

4 Answers

2
votes

Remove A.java and check the output if it work then check the error of A.java and recompile

After removing a.java compiler not work then try to debugging main java codes.

1
votes

Workaround: IDEs such as Eclipse or IntelliJ compile "as much as possible". They even allow you to run code that doesn't completely compile!

Alternatively, you could look into using a build system such as maven, gradle, ... - such tools will for sure allow for this.

( and for any project of reasonable size, using a build system is "mandatory" anyways - because of that: directly using javac manually is just a pain, and makes things that should be easy to do pretty complicated sometimes )

0
votes

If there are dependencies of A to B or C, and class A is having some compilation issue, then B.class and C.class also won't be generated. Fix the compilation issue in A or clear the dependencies.

0
votes

As there are no dependencies among the source code files, the simplest solution I can think of is to invoke javac once for each source file.


As an alternative you can use ECJ, the compiler used by the Eclipse IDE and part of JDT Core. From the linked page:

In particular, it allows to run and debug code which still contains unresolved errors.

This is one of the main differences between javac and the Eclipse compiler.

It is available as a separate download (see section JDT Core Batch Compiler for any build linked from the download page). There are help pages describing how to use the compiler programmatically or as a separate application from the command line.