I want to know which types in blackberry that i can use instead of these j2se types:
Iterator
Collections
StringTokenizer
HashMap
ArrayList
Map
I want to know which types in blackberry that i can use instead of these j2se types:
Iterator
Collections
StringTokenizer
HashMap
ArrayList
Map
You can use the Vector class for lists and the Hashtable class for maps. As for StringTokenizer, depending on what type of delimiters you're splitting on you may find something useful in the StringUtilities class.