Using Persistent Store in BlackBerry

前端 未结 1 1568
时光取名叫无心
时光取名叫无心 2021-01-27 09:53

I am developing a BlackBerry application. I want to store the details of multiple users in my mobile. I have to store data like username, first name, last name ,email id ,phone

相关标签:
1条回答
  • 2021-01-27 10:46

    This link should answer most of what you need to know - http://www.miamicoder.com/post/2010/04/13/How-to-Save-BlackBerry-Application-Settings-in-the-Persistent-Store.aspx.

    Below is some code from one of my projects.

    public class PreferencesStore 
    {
        // Not a real key, replace it with your own.    
        private static long m_lTabulaRectaKey = 0l;
    
        public static Vector getTabulaRectas()
        {
            Vector vecTabulaRectas = new Vector();
    
            PersistentObject poObject = PersistentStore.getPersistentObject(m_lTabulaRectaKey);
    
            if(poObject.getContents() != null)
            {
                vecTabulaRectas = (Vector)poObject.getContents();
            }
    
            return vecTabulaRectas;
    
        }
    
        public static void addTabulaRecta(TabulaRecta a_oTabulaRecta)
        {
            Vector vecTabulaRectas = getTabulaRectas();
    
            vecTabulaRectas.addElement(a_oTabulaRecta);
    
            PersistentObject poObject = PersistentStore.getPersistentObject(m_lTabulaRectaKey);
    
            poObject.setContents(vecTabulaRectas);
    
            poObject.commit();
        }
    }
    
    0 讨论(0)
提交回复
热议问题