Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have created my project in blackerry 7. when try to run project it shows "Project can not be packaged because it does not have a BlackBerry JRE associated.Unknown BlackBerry Packaging Problem" i have selected compiler 1.4. I have used classes like Vector it shows error that change compiler compliance level to 1.5.

share|improve this question

1 Answer

up vote 0 down vote accepted

Check that your project is using the Blackberry JRE/JDE in the Build Path, and not standard Java JRE. Compiler compliance should be 1.3 with Blackberry projects (AFAIK, unless this has changed with BB JDE 7), the reason you're asked to change the level to 1.5 is probably that you have standard JRE defined in the Build Path and you're trying to use generics (Vector<SomeClass>) which are not available before Java 1.5 (and thus cannot be used in BlackBerry -projects).

share|improve this answer
so What should i do to use vectors in blackberry projects? – JoVinz Apr 23 '12 at 5:25
@JoVinz Sorry, I had forgot to add the code-markings, so the generics-part between < and > didn't show. What I meant is you can't use generics (like Vector<SomeClass>) in Blackberry, but you can use "normal" java.util.Vector (no type safety, just plain Vector without the generics-part, so it acts just same as Vector<Object>). Just make sure you have set the correct JRE (The Blackberry one) in the projects' build path and the code compliance is set to Java 1.3. – esaj Apr 23 '12 at 6:00
I want to use this :HashMap<String, Map<String, Map<String, String>>> how can i use this? – JoVinz Apr 23 '12 at 6:09
@JoVinz: Unfortunately, you can't. First of all, as said, Blackberry doesn't support Java 1.5's features, like generics (the parts between < and >), and also, doesn't have HashMap. The closest is probably HashTable, see here: blackberry.com/developers/docs/7.0.0api/java/util/… – esaj Apr 23 '12 at 6:18
Whats the way to use Map inside Hashmap? i mean is there any other way to do it? – JoVinz Apr 23 '12 at 10:56
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.