如何使用 getResourceAsStream 读取 J2ME 中的文件
我的J2ME程序结构如下。
文件读取
-src
-res
-test
-abc.txt
-java libraries
此处 abc.txt 位于测试文件夹中
现在我正在读取文件如下:
InputStream is = getClass().getResourceAsStream("test/abc.txt");
执行上述语句后,它将引发异常。
现在请帮帮我。如何读取文件以及我必须在 getResourceAsStrream 中给出哪个路径?
My J2ME program structure is like as follow.
File Read
-src
-res
-test
-abc.txt
-java libraries
Here abc.txt is in test folder
Now I am reading file as follow:
InputStream is = getClass().getResourceAsStream("test/abc.txt");
after executing above statement, it will raise exception.
Now please help me out. How to read file and which path I have to give in getResourceAsStrream?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您在文件路径中错过了
res
。像这样使用,You missed
res
in your file path. Use like this,我会将“abc.txt”放入 res 文件夹中,然后将其访问为
I would put "abc.txt" in the res folder and then access it as
执行此操作后,您应该清除您的项目并刷新它...然后运行它。
After doing this you should clear your project and refresh it...then run it works..