从命令行将应用程序加载到黑莓模拟器
如何从命令行(不是 Eclipse)加载应用程序并将现有副本替换为 Blackberry 模拟器?
How can I load an application and replace the existing copy to the Blackberry emulator from the command line (not Eclipse)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
进入模拟器窗口菜单并选择“模拟 -> USB 电缆连接”,然后您可以使用 javaloader,就像它是通过 USB 连接的实际设备一样。
Go into your simulator window menu and select "Simulate->USB Cable Connected" and then you can use javaloader as if it was an actual device connected via USB.
您可以将应用程序的 .cod 文件复制到模拟器主目录中。当模拟器启动时,您的应用程序将出现在模拟器中。我更喜欢这种技术,因为它简单且易于编写脚本。 (我开发了一个自动化BB测试框架)。一些较新的模拟器(fledge)具有用于加载应用程序的 CLI 选项。
You can copy your app's .cod file into the simulator home directory. When the simulator is launched your app will appear in the sim. I prefer this technique because it's simple and easily scripted. (I developed an automated BB test framework). Some of the newer simulator's (fledge) have CLI options for loading apps.
按键(FRONT_CONVENIENCE)。这在 9630 模拟器上有效。 /controller-help 中有一个可能的关键名称列表,我只是迭代它们并进行了猜测
编辑:这是对 Vishal 的回应
KeyPress(FRONT_CONVENIENCE). This worked on a 9630 simulator. There's a list of possible key names in the /controller-help for fledge, I just iterated through them and made a guess
edit: This is in response to Vishal