J2ME中的ArrayList?

时间:2010-07-27 11:42:01

标签: java java-me

我有一个数据库记录的arraylist。我想把它放在我的J2ME列表中。但是J2ME中没有分裂或arraylist。我该怎么做?一个代码示例会很好。

3 个答案:

答案 0 :(得分:4)

J2ME有Vector,与ArrayList相同,但它的所有方法都是同步的(稍微慢一点)。

答案 1 :(得分:4)

最好使用Vectorjava.util.Vector)。它会对你有所帮助。

答案 2 :(得分:1)

http://docs.oracle.com/javame/config/cldc/ref-impl/midp2.0/jsr118/java/util/Vector.html

public void asd(){
    MyObject mo = new MyObject();
    Vector v = new Vector();

    //Adds the specified component to the end of this vector, increasing its size by one.
    v.addElement(mo);

    //Returns the component at the specified index.
    mo = (MyObject)v.elementAt(0);
}