Android上的Twitter(如何获取提要的日期和时间)

Android上的Twitter(如何获取提要的日期和时间),android,twitter-feed,Android,Twitter Feed,实际上,我正在制作一个android应用程序,它与Twitter提要集成在一起。 因为我能够通过解析来自twitter服务器的JSONArray来获得特定用户的相应TweetsFeed。 但是这些提要的日期和时间不在JSONARRAYResponse中 那么,有谁知道如何获取相应推特提要的日期和时间呢 我用于获取提要的代码是: package com.tweet.example; import java.io.BufferedReader; import java.io.IOException;

实际上,我正在制作一个android应用程序,它与Twitter提要集成在一起。 因为我能够通过解析来自twitter服务器的JSONArray来获得特定用户的相应TweetsFeed。 但是这些提要的日期和时间不在JSONARRAYResponse中

那么,有谁知道如何获取相应推特提要的日期和时间呢

我用于获取提要的代码是:

package com.tweet.example;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONArray;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
public class Home extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        String readTwitterFeed = readTwitterFeed();
        try {
            JSONArray jsonArray = new JSONArray(readTwitterFeed);
            Log.i(Home.class.getName(),
                    "Number of entries " + jsonArray.length());
            for (int i = 0; i < jsonArray.length(); i++) {
                JSONObject jsonObject = jsonArray.getJSONObject(i);
                Log.i(Home.class.getName(), jsonObject.getString("text"));
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public String readTwitterFeed() {
        StringBuilder builder = new StringBuilder();
        HttpClient client = new DefaultHttpClient();
        HttpGet httpGet = new HttpGet(
                "http://twitter.com/statuses/user_timeline/<USERNAME>.json");
        try {
            HttpResponse response = client.execute(httpGet);
            StatusLine statusLine = response.getStatusLine();
            int statusCode = statusLine.getStatusCode();
            if (statusCode == 200) {
                HttpEntity entity = response.getEntity();
                InputStream content = entity.getContent();
                BufferedReader reader = new BufferedReader(
                        new InputStreamReader(content));
                String line;
                while ((line = reader.readLine()) != null) {
                    builder.append(line);
                }
            } else {
                Log.e(Home.class.toString(), "Failed to download file");
            }
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return builder.toString();
    }
}
注意:请提供一些工作用户名@http://twitter.com/statuses/user_timeline/.json;


提前感谢

Hmmm时间戳完全在那里,它在created_at字段中。看一看