等于
LinkedHashMap < String, String > postMap =
new LinkedHashMap < String, String >();
for Java 1.4 for Blackberry? I am trying to make a hashmap
等于
LinkedHashMap < String, String > postMap =
new LinkedHashMap < String, String >();
for Java 1.4 for Blackberry? I am trying to make a hashmap
There is no equivalent. Some additional collections-related classes are in net.rim.device.api.util
, but nothing like hash map with predictable traversion order.
Depending on a task, you might be better off with just a Vector - if there are only couple of dozen entries. Memory is kind of more precious than CPU on BB.
If performance is unacceptable, then simply put a wrapper around Hashtable and store own class with class MyEntry { String key; String value; MyEntry prev,next; }
as values.
我也想在BlackBerry使用LinkedHashMap,因为我想要执行LRU切。
不幸的是,链接 HashMap在B中得到了支持,因此,我发现一部冰样码,仅使用哈希特语实施:
Does the AlertListener interface works globally on all alerts on the blackberry device, or does it only work with alerts generated by your application? In other words, can I use this interface to ...
I want to get the longitude and latitude of device. I used location api to get the longtitude and latitude the problem now I am facing is that I could not call the getLocation() method inside button ...
I am getting parser exception as "Expecting End of File" while parsing xml data for Blackberry application? How do I fix it?
I need to create a custom gauge field which looks slimmer like a Blue thin line filling in. Any ideas/resources?
In trying to determing a if a specific connection is supported, I m cofused about the difference between CoverageInfo.getCoverageStatus() and CoverageInfo.isCoverageSufficient(). For example: // ...
I need to learn how to buffer audio stream from a remote server in Blackberry. There is a sample buffered playback app with Blackberry api but can you tell what url may I use to test the application?
How does one implement a push notification for a blackberry app? I heard that in order to do so I need to purchase a Blackberry Enterprise Server which costs me 1400 per year. Is this true? Where is ...
Can anyone tell me why i am getting this IOException:smileytongue:eer refused the connection??? I was testing my application yesterday it was working fine..but today when i opened it i cannot log int ...