如何在 Blackberry 4.5 中的单个类中生成 2 个资源文件?
我正在使用
ResourceBundle _resources = ResourceBundle.getBundle(BUNDLE_ID, BUNDLE_NAME);
现在我想在同一类中创建另一个资源文件来创建资源文件。
我可以像第一个资源文件一样进行操作吗?
接口ResourceFile.java是一个自动生成的文件。那么如何查看呢?
I am creating a resource file using
ResourceBundle _resources = ResourceBundle.getBundle(BUNDLE_ID, BUNDLE_NAME);
Now i want to create another Resource file in that same class.
Can i do it in the same way like for first Resource file ?
The interface ResourceFile.java is an auto-generated file. Then how to view it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要直接在 BlackBerry JDE 中编辑资源文件 (ResourceFile.rrc) - 从那里您可以添加新的键/值对。我认为没有办法迭代代码中的所有可用键。
You need to edit the resource file (ResourceFile.rrc) in the BlackBerry JDE directly - from there you can add new key/value pairs. I don't think there's a way to iterate through all available keys in the code.