Questions tagged [blackberry-jde]

Blackberry Java Development Environment

The BlackBerry Java Development Environment (BlackBerry JDE) is a fully integrated development environment and simulation tool for building Java Platform, Micro Edition (Java® ME) applications for Java® based BlackBerry smartphones.

It’s a Mobile Information Device Profile (MIDP) compliant Java ME environment for developers who wish to maintain seamless portability in their wireless applications. In addition, the BlackBerry JDE provides a full suite of interfaces and utilities to take advantage of some of the unique features of the BlackBerry smartphone.

More information here.

498 questions
3
votes
3 answers

Blackberry application loading on simulator

while loading my application on BlackBerry simulator its displaying given below an error Unable to start simulator. Check that the file exists. (java.lang.IllegalArgumentException: Executable name has embedded quote, split the arguments)
3
votes
1 answer

Blackberry - "you currently have no new notifications"

I'm using the code below (especially pushMessage method) to show some notification to user: public final class MyApplicationMessageFolder { public static final long MyFolderId = 0x1256789012F10123L; private ApplicationMessageFolder…
CAMOBAP
  • 5,011
  • 8
  • 53
  • 84
3
votes
1 answer

How to send SMS Programmatically in Blackberry

How to send SMS programmatically in BlackBerry? And I read somewhere, I need server side as well as client side code for sending SMS. Is it true? For sending message from 1 device to another or from Emulator to device, Do I really need server side…
3
votes
0 answers

How to make background of BrowserField transparent in Blackberry

I am using BrowserField component of RIM BB. It is right now displaying a white background. I want make a transparent background, so it could match with the Manager's background color. I had tried with below code. But it's not working. BrowserField…
3
votes
1 answer

IOException Radio is off, and Out of memory, on BlackBerry

I am performing HttpConnection in my RIM Blackberry application. I am using wi-fi connection. While performing HttpConnection sometimes it is returning data, sometimes it is giving java.io.IOException Radio is off and java.io.IOException Out of…
nisha.113a5
  • 1,917
  • 15
  • 29
3
votes
0 answers

Eclipse is crashing during debug on device (blackberry) with error "handheld is resetting: Error: myClass: Class removed."

Sometimes when I run my project of Blackberry I got this error from the Eclipse: "Handheld is resetting: Error: myClass: Class removed. or this one: "Handheld is resetting: Error: unable to open port. After that the device is resetting itself and…
Itay Levin
  • 1,389
  • 2
  • 15
  • 23
3
votes
1 answer

Is There Any Listener For Bluetooth Power On?

I am checking whether Bluetooth is on or not using the following method; while (!isOn) { isOn = LocalDevice.isPowerOn(); if (isOn) { startProcess(); break; } try { Thread.sleep(10000); } catch…
Mudassir
  • 13,962
  • 8
  • 60
  • 85
3
votes
1 answer

Which BlackBerry Devices/OS to target? (July 2012)

We have a fairly simple mobile application, completed for iPhone and Android that does the following: queries a web service to verify the user's account information display an animation to show that the user, in fact, has a valid account We got…
Michael Sharek
  • 4,951
  • 2
  • 27
  • 33
3
votes
1 answer

Error while running web service on blackberry simulator

I am trying to access a webservice from a BlackBerry application that I developed. However, when running the app I get " App Error 104 Uncaught: NullPointerException " I am unable to debug, for some strange reason my debugger auto-closes as…
Sarah
  • 1,795
  • 1
  • 18
  • 39
2
votes
4 answers

Decrypt PKCS #1 v2.1 cipher from BlackBerry in C#.NET

I have written a BlackBerry app that RSA encrypts a message using PKCS1FormatterEngine. This outputs a ciphered message formatted in PKCS #1 v2.1 Here is a snippet of the…
jim
  • 7,748
  • 11
  • 71
  • 144
2
votes
1 answer

Get HTML response after sending POST data via BlackBerry

I need to read an HTML response from a URL after sending it POST data. I already have the following two functions but I don't know how to combine them so that I can send POST data AND get the response. This function gets a standard HTML…
Chro
  • 933
  • 2
  • 14
  • 26
2
votes
2 answers

Java integer to byte array Blackberry J2ME

I've found this solution but it seems to be for Java SE. I can't find an alternative to the System.out.format() function. Also, I have changed the ByteBuffer.allocate() function to ByteBuffer.allocateDirect() is this correct? byte[] bytes =…
jim
  • 7,748
  • 11
  • 71
  • 144
2
votes
1 answer

Map is not showing app in a Blackberry app (SDK 6.0, Torch 9800)

I am building an Blackberry app and now having this strange problem that a map is not showing up. mapView = MapFactory.getInstance().generateRichMapField(); mapView.getAction().setCentreLatLon(55.604981, 13.003822…
Mike Bevz
  • 1,268
  • 1
  • 14
  • 20
2
votes
1 answer

Currency formatting for BlackBerry when locale set to French

I've writing an app that requires French language support. I'm having trouble getting currency to format correctly when the locale is set to FR. Is there any way to do this correctly?
Shams Shafiq
  • 3,510
  • 3
  • 14
  • 21
2
votes
3 answers

Center ButtonField in a FieldManager

I wanna center a buttonField in a HorizontalFieldManageri tried that code : HorizontalFieldManager ButM = new HorizontalFieldManager(Field.FIELD_HCENTER|USE_ALL_WIDTH) { public void paint(Graphics graphics) { …
Mehdi
  • 966
  • 1
  • 9
  • 24
1 2
3
33 34