1

I don't know if this is a super noob question, but I'm currently building an app from scratch with the knowledge i've gained so far, and I'm making a "Notes" app where You can create notes, delete, edit(update), etc etc.

The question I'm having is that I know I can use a database to store data from my input, and I know i can use A Database to save, open the data, but Just incase, does Java have a LocalStorage, like JavaScript/JSON where you can save things and open them up later?

If there is LocalStorage for applications to save data, and open it up after running again, what would be some good resources to read about it and learn it so I may integrate it into my application?

If there is no localstorage, I wan't to be able to perhaps allow the user to add images when creating notes, how would I be able to do that using a database?

shmosel
  • 45,768
  • 6
  • 62
  • 130
ivan l
  • 49
  • 1
  • 3
  • You can use a properties file. – shmosel Jun 12 '18 at 04:26
  • This post appears to be [off-topic](http://stackoverflow.com/help/on-topic) as per *Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam.* – Rcordoval Jun 12 '18 at 05:36
  • Welcome to SO. Please take a [tour](https://stackoverflow.com/tour) and see [How do I ask a good question?](https://stackoverflow.com/help/how-to-ask). It is important to ask questions with clear concise problem statements. Please ask one such question in a post. See [this](https://stackoverflow.com/questions/15625303/how-to-save-images-provided-by-a-user-to-a-database-using-java) – c0der Jun 12 '18 at 06:16

1 Answers1

0

As far that I know of there packages that allow you to store data as you intend, but following on your next question, you could possibly store the address/file name of the image you wants to add to the database. You could then use it to retrieve the image file and display it.

If you have any questions on image implementing images in java, reference this documentation and tutorial

If you have any more questions on working with databases, reference this documentation

I hope this helps.