B4A What is the most convenient way to save APP settings?
Is it similar to the Windows INI file or using SQLITE? For a very small amount of data, does it take up too much memory to use a database? If reading or writing is closed immediately, will the APP increase the memory?
Asked CHATGPT AI, he said:
In Java, there is no built-in class directly for reading and writing INI files. However, you can use the java.util.Properties class to read and write INI files because the structure of INI files is similar to Java's properties files.
Is it similar to the Windows INI file or using SQLITE? For a very small amount of data, does it take up too much memory to use a database? If reading or writing is closed immediately, will the APP increase the memory?
Asked CHATGPT AI, he said:
In Java, there is no built-in class directly for reading and writing INI files. However, you can use the java.util.Properties class to read and write INI files because the structure of INI files is similar to Java's properties files.