localhost:src root# pwd
/test/javaTest/src
localhost:src root# tree
.
|____com
| |____hello
| | |____world
| | | |____Main.class
| | | |____Main.java
| |____hello.world
| | |____Main.class
| | |____Main.java
例如,文件夹中有一个类似的Main.class,一个是" com / hello / world",一个是" com / hello.world",我该怎么办?将Mani.class加载到文件夹" com / hello.world"从src文件夹? 如果我运行命令" java com.hello.world.Main",那么文件夹中的Main" com / hello / world"将被调用,这是一种我可以在文件夹" com / hello.world"中调用Main的方式吗?