将源文件编译到其他目录?
2022-09-01 20:31:36
有没有办法将Java源文件()编译到其他目录?*.java
如果我的包文件结构是这样的:
Mathematics ->
Formulas ->
src ->
// source files containing mathematical formulas...
bin ->
// class files containing mathematical formulas...
Problems ->
src ->
// source files containing mathematical problems...
bin ->
// class files containing mathematical problems...
我想将源文件和类文件分开以保持文件夹井井有条,但我目前必须在每次编译后将所有类文件从文件夹复制到文件夹中。src
bin
有没有办法通过将类文件编译到命令中的另一个文件夹来简化此过程?javac