Я хотел бы создать файл jar с помощью eclipse, но программа, похоже, копирует ненужные файлы в jar.
Мой проект программы java GUI состоит из:
<path>/src/data/program.java [this is the gui]
<path>/src/data/testcases/testcase.java [here are testcases stored, which are executed by program.java]
<path>/src/data/system/config.ini [heres some data stored which is collected to set settings inside the program.java]
<path>/src/bin/.../classes.class [here are the classes stored by eclipse(program.class / testcase.class)]
<path>/ExtRes/externallibary.jar [here are some external libaries stored]
<path>/ExtRes/Templates [here are some templates with information stored which program.java collects when used]
<path>/Img/image.png [image folder for icons inside the program]
<path>/Logs/.../somelog.txt [here are some logs stored which are output of the program.java]
Итакпрогрессивный вопрос заключается в том, как лучше отсортировать эти файлы.
И основной вопрос заключается в том, как мне создать банку, которая в основном состоит только из программы. java?
Редактировать: Спасибо за ответыпо основному вопросу!
Пожалуйста, также ответьте на вопрос выше:
Каков наиболее распространенный / лучший способ сортировки файлов его Java-программы GUI?