I have made a java application exported as a runnable jar file. The user can customize it settings like for example how many textfields it shows. The default might be three textfields but the user might want to see 8 of them. The next time the user starts this application the number of textfields is going to be the default one: 3.
However I need a way to save his settings within the jar file itself.
What I already did is to have a .txt file which stores all the saved data. But this time the application has to be portable. So it has to be a all-in-one application without any other files around it.