相当于J2ME中的FileInputStream?
J2ME 中是否有与 FileInputStream
等效的东西?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
J2ME 中是否有与 FileInputStream
等效的东西?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您应该使用 JSR 75 中的 FileConnection。以下是使用文件连接读取文件的简短示例:
请查看 此处了解更多信息。
You should use FileConnection from JSR 75. Here is a short example of using file connection for reading file:
Please take a look here for more info.
同意,FileConnection 及其 getInputStream 方法将是最接近 FileInputStream 的方法。这是带有源代码的快速教程:
http ://j2mesamples.blogspot.com/2009/02/file-connection-using-j2me-api-jsr-75.html
您将找到有关此的更多信息页面:
http://www.developer.nokia.com/Community/Discussion/showthread.php?143733-How-to-test-file-reading-writing-and-web-server-app-in-模拟器
Agreed, the FileConnection and it's getInputStream method will are the closest you will get to a FileInputStream. Here's a quick tutorial with source code:
http://j2mesamples.blogspot.com/2009/02/file-connection-using-j2me-api-jsr-75.html
You will find more information on this page:
http://www.developer.nokia.com/Community/Discussion/showthread.php?143733-How-to-test-file-reading-writing-and-web-server-app-in-emulator
如果您只关心 JAR 文件中的文件,那么看看 getResourceAsStream 方法,设备不需要有 JSR 75 即可使用它。
If you are only concerned with files in the JAR file, then have a look at getResourceAsStream method, the device does not need to have JSR 75 to use it.