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.
Questions tagged [jde]
105 questions
12
votes
7 answers
installing BlackBerry Eclipse JDE plugin on Mac OS X
Is it possible to install BlackBerry Eclipse JDE plugin on Mac OS X? I tried to install the plugin through the eclipse update and also by downloading the zip file from the BlackBerry site.
This is the most unintuitive process for getting set up in…

Atma
- 29,141
- 56
- 198
- 299
8
votes
3 answers
How to add external jar or zip file in the Blackberry project
I want to add a jar file to my BlackBerry project. I have tried adding the jar file by the following manner ->
Right click on project -> properties -> Build -> Imported jar files -> Add
But after that, whenever I try to run the application I get…

iLearner
- 1,670
- 2
- 19
- 45
8
votes
4 answers
Blackberry URL encoder
I need to encode a URL using HTTP GET request in Blackberry. Can any one help me find how do I achieve this.

Neo
- 897
- 3
- 19
- 27
7
votes
4 answers
How do you make a dropdown list that displays images to the user instead of text?
The ObjectChoiceField field meets all my requirements but it is not pretty.
This is what I have:
String pets[] = {"Dog", "Cat", "Duck" };
ObjectChoiceField dd = new ObjectChoiceField("My Pet",pets,0,ObjectChoiceField.FIELD_LEFT);
But I would prefer…

Andrew
- 664
- 13
- 32
5
votes
1 answer
How to get a list of background processes on BlackBerry
I'm looking for something corresponding to net.rim.device.api.system.ApplicationManager.getVisibleApplications(), but including applications that might not/do not have a UI. Any ideas?
Unreasonably complicated work-around solutions welcome, I'm…

Tim Perry
- 11,766
- 1
- 57
- 85
5
votes
1 answer
jdb and jde with emacs ( name unknown)
main[1] print myVariable
com.sun.tools.example.debug.expr.ParseException: Name unknown: myVariable
myVariable = null
Any guesses as to why this might be happening? I can place breakpoints like I'm used to, but I can't access the variables.

sam-mere
- 71
- 4
4
votes
1 answer
Oracle JD Edwards EquipementManager Documentation
Where can I find the full API documentation of EquipmentManager? the official/unofficial docs and books keep pointing to the javadoc packages (JP170001,J1700001,J1700002) which I couldn't find.
P.S I'm looking for an online documentation (without…

Bassel Shmali
- 207
- 2
- 15
4
votes
2 answers
Picking a Blackberry JDE version
I am new to Blackberry programming and starting my first app soon. I believe I will be supporting OS 4.5 and higher, but now need to decide which JDE to use. I want to support the most amount of phones as possible, which is why I would guess 4.5 and…

KKlucznik
- 189
- 1
- 3
- 16
4
votes
4 answers
Installing the Blackberry JDE Plugin in Eclipse doesn't work
I followed this guide:
http://www.thinkingblackberry.com/archives/21/comment-page-1#comment-104
Installed the JDE 4.7 and 4.5 packs, and when I try to start a new project, there is no option for "Blackberry Project" at all.
When I click "Help >…

Neil
- 24,551
- 15
- 60
- 81
3
votes
1 answer
I am trying to get build of nativescript with react but getting this error in build?
C:\ns\example-app>java -version
java version "17" 2021-09-14 LTS
Java(TM) SE Runtime Environment (build 17+35-LTS-2724)
Java HotSpot(TM) 64-Bit Server VM (build 17+35-LTS-2724, mixed
mode, sharing)
C:\ns\example-app>ns -version
8.1.5
√ Up to…

sumit
- 31
- 3
3
votes
1 answer
Java-mode indentation
Java-mode seems to be unindenting rather than indenting after a method declaration.
By which I mean I'd expect to see this:
class GoodExample {
public void method() {
allNicelyIndented();
noProblemsHere();
}
}
But instead…

MHarris
- 1,801
- 3
- 21
- 34
3
votes
1 answer
Problem running Blackberry App without BES
I'm developing a Blackberry Application that does quite a bit of networking, using HttpConnections and InputStreams. I've been testing it in an environment where it has access to a BES, but will be demoing it with only wireless.
Some preliminary…

J.R.
- 5,789
- 11
- 55
- 78
3
votes
3 answers
Blackberry JDE ArrayList?
The Blackberry JDE does not include java.util.ArrayList, even though it knows about java.util? What's up with that? Is there an equivalent class for BB? I don't want to use an array, really, because I have an unknown number of objects I'm dealing…

J.R.
- 5,789
- 11
- 55
- 78
2
votes
2 answers
Getting Arabic characters as ??? in PHP from JDE
I am trying to fetch our Arabic values from JDE Database using the following connection string:
$dsn = "Driver={SQL Server};Server=10.10.10.27;Database=JDE;charset=utf8";
$username = "username";
$password = "password";
$string =…

Sadeem M.K.
- 61
- 9
2
votes
1 answer
Blackberry and RESTful services
I'm looking to develop a blackberry application to consume a RESTful service. At the moment we plan to develop a REST layer which we will use to perform searches on a back end database and return the results as JSON.
I have used the Jersey framework…

John
- 371
- 1
- 4
- 5