-1

So I am working on my first program that I'm actually making some money off of. It consists of a .jar, two txt files (user accessible), a few batch files, and some images. Are there any options for packaging these nicely together instead of passing a bunch of loose files in a folder off to my client? I'm a college student, and this hasn't been talked about yet...

Tevett Goad
  • 138
  • 1
  • 7

1 Answers1

1

You can use packages and different folders for different class file or extra files as you wish. Try to organize the similar files in a group in a folder. use lib folder for keeping your dependencies and src folder for keeping all your source codes. Also you can use a java project manager extension in your desired code editor.

For reference here is one of my projects folder structure (I Use VS CODE for coding) -

enter image description here