开发者

Debug Windows Mobile in Netbeans

开发者 https://www.devze.com 2023-03-17 04:19 出处:网络
is there any way to debug a J2ME application in a Windows Mobile emulator in N开发者_如何学JAVAetbeans?

is there any way to debug a J2ME application in a Windows Mobile emulator in N开发者_如何学JAVAetbeans?

Just can't figure it out. Thanks!


You can't do a real debugging session there (like using breakpoints). A workaround is installing one java runtime for windows mobile (something like Esmertec Jbed) and writing something in console with System.out.println(), windows mobile emulator will echo your debugging texts. also you can use alerts for debugging. A very good alternative is creating a debugging class: Place two MIDlets on your j2me project. one of them for your real MIDlet, and another for reading debug lines from an RMS. in running mode, you can write your debugging line in the RMS, and after a run, you can read them in the another MIDlet. you will find this approach so clean. You can also integrate this debugging idea with netbeans or j2me polish's pre-processing feature.

0

精彩评论

暂无评论...
验证码 换一张
取 消