Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 android 应用程序,它将提供字典支持(打字时的建议)。所以,我有一个 50000 字的文本格式(.txt)的目录。所以是否可以.txt像在 android 中一样存储和检索文件。
.txt
请提出一些方法
您可以将该文件放入assets或raw文件夹中
assets
raw
读书
String url = "file:///android_asset/raw/filename.txt";
有关更多信息,请参阅此答案