Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Trusted Contributor
arunbiet
Posts: 233
Registered: ‎06-22-2010
My Carrier: blackberry developer

Reading emails under Inbox folder

I am able to access my Inbox folder name using the code below 

Store store = Session.getDefaultInstance().getStore(); 
         Folder[] folders = store.list(Folder.INBOX);

        	 Folder inbox = folders[0];
      System.out.println("folder name is--"+inbox.getFullName());	
	

 Now i want to know how can i access each mails under this folder,i mean i want to read all the emails under this inbox folder.Is it possible ?

Please use plain text.
Developer
peter_strange
Posts: 17,720
Registered: ‎07-14-2008

Re: Reading emails under Inbox folder

I recommend the Search box (bear top right hand side).  I found this Thread, just by typing in "Inbox list".  I am sure there are others that are just as useful:

 

http://supportforums.blackberry.com/t5/Java-Development/Cannot-list-messages-from-INBOX/m-p/559543#M...

Please use plain text.