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.
我试图在我的代码中引用一个 txt 文件,该文件将在使用 FileInputStream 时读取值,但我不确定如何设置路径,所以我不必专门输入“C:\...\file .txt”到构造函数中。我知道有办法做到这一点,我似乎无法在任何地方找到它。API 有点模糊,无法从文档中完全理解。
你已经标记了这个android。所以我假设你正在努力。
android
将该文本文件放在您的文件夹中raw或assets文件res夹中。
raw
assets
res
getResources().openRawResource()您可以分别使用和访问这些文件getResources().getAssets()。
getResources().openRawResource()
getResources().getAssets()