I have an arraylist of database records. I want to put it in my J2ME List. But there is no split or arraylist in J2ME. How can I do it? A code example would be nice.
J2ME has Vector, which is the same as ArrayList, but all its methods are synchronized (a little bit slower).
Vector
ArrayList