-1

When I create a java project, there are only two folders lib and src, and not files such as .classpath or .project, I know that is integrated into the terminal of vscode enter image description here

But I want to output the class file to the bin folder of the current folder instead of the path in the picture, I hope to make my project run in eclipse, can anyone tell me what should i do?

chiwa Ando
  • 18
  • 1

1 Answers1

1

Create a Maven or Gradle based project instead of a freestyle structure, it will be recognized in all IDEs including Eclipse as you expected.

Check the Java Build tutorial from the officila VSCode docs.

Hantsy
  • 8,006
  • 7
  • 64
  • 109