I have successfully accessed WordNet dictionary data files on external storage using JAWS APIs. But now I want to keep these files on internal storage in order to make them private to my app. The dictionary files are about 35MB in size. My question is, Is it possible or good practice to use internal storage for this purpose and to keep a file as large as 35MB on it?
Thanks.
Is it good to keep dictionary database files on internal storage in android?
140 views Asked by Sher Alam At
1
There are 1 answers
Related Questions in ANDROID
- Creating global Class holder
- Flutter + Dart: Editing name of a tab shows up a black screen
- android-pdf-viewer Received status code 401 from server: Unauthorized
- Sdk 34 WRITE_EXTERNAL_STORAGE not working
- ussd reader in Recket Native module
- Incorrect display of LinearGradientBrush in IOS
- The Binary Version Of its metadata is 1.8.0, expected Version is 1.6.0 build error
- I can't make TextInput to auto expand properly in Android
- Creating multiple instances of a class with different initializing values in Flutter
- How to create a lottie animation
- making android analyze with coverity sast tool
- Flutter plugin development android src not opening after opening example
- I initialize my ViewModel in the Activity with several fragments as tabs, but the fragments(tabs) return null for the updated livedata
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How I can use the shared preferences class?
Related Questions in INTERNAL-STORAGE
- How to save an audio file in internal storage android
- Saving string array list to internal file directory android
- How to: Android Camera App saves image to internal storage
- Can't save captured image to Internal storage android camera
- Display specfic folder videos in a listview with Thumbnails android
- Android: Cannot access an image file from the internal storage on Android device
- Storing images from android-volley in internal storage
- notepad eclipse java android internal storage
- set a variable to a the folder path Environment.DIRECTORY_DOWLOAD in android
- how to get two file paths in one android Activity?
- Saving file into internal storage and make the files accessible to the user
- How to create folder in internal storage with I add more bitmaps inside the folder?
- Line breaks are lost when saving a string to internal storage and retrieving it. How do I preserve line breaks?
- Android 4.4 Virtual Device Internal Storage Will Not Resize
- How to read file from internal storage when Android app starts
Related Questions in JAWS-WORDNET
- How to get noun categories list using JWNL
- PorterStemmer with verbs ending in -es and -ed java
- Find Synonyms using Arabic Wordnet in java
- Extracting word list from Wordnet
- WordNet does not have a definition for the word 'for'
- WordNet Database Directory Relative Path in .jar
- How to check if a word exists in the Wordnet database
- Is it good to keep dictionary database files on internal storage in android?
- how to check whether word in wordNet or not
- How to use JAWS for Wordnet similarity?
- How to find the path length between 2 senses?
- How to tag monosemous words
- Sentence Similarity using WS4J
- How to use WordNet in GAE
- Find synonyms using JAWS in netbeans
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Yes definitely you can but you should not.
From the compatibility definition for Android 6.0
Device implementations(Android phone) MUST have at least 424 of non-volatile storage available for user data. That is, the /data partition MUST be at least 424mb.
Which mean all app can store internal data upto 424 mb. But keeping database scale and older os (lesser space) in consideration i would not suggest to store 35 mb data internally.