Package fb4java.beans

Examples of fb4java.beans.Album


    JSONArray albums = (JSONArray) albumListObj;
    int albumsSize = albums.length();
    for (int a = 0; a < albumsSize; a++) {
        JSONObject jObj = albums.getJSONObject(a);

        Album album = new Album();
        album.aid = jObj.getString("aid");
        album.coverPid = jObj.getString("cover_pid");
        album.owner = jObj.getLong("owner");
        album.name = jObj.getString("name");
        album.created = new Date(jObj.getLong("created") * 1000);
 
View Full Code Here

TOP

Related Classes of fb4java.beans.Album

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.