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.
我想以文本文件格式保留数据库创建查询和数据访问查询(这些文本文件将位于“res”文件夹之类的文件夹中)并从android访问它们。
假设我想执行 createDB() 查询,那么我应该能够通过相关的文本文件名调用并执行查询。
我在互联网上搜索了很多时间,但最终无法找到合适的教程或解决方案。因此,我恳请您提供一些想法/解决方案,或者至少提供一个满足我要求的好教程。如果我的问题不清楚,也请提及。谢谢你们。
我不知道你为什么要这样做,但你可以这样做:
1)将这些文件放在文件assets夹中 2)您可以像这样打开它们:
assets
InputStream input = context.getAssets().open("example.xml");