android 上网,导致 twitter4j 异常?

发布于 2024-09-07 21:56:52 字数 1142 浏览 3 评论 0原文

我正在 android 上尝试 twitter4j(这两个都是新的),用 java 编写了一个简单的过程只是为了测试它。它下载用户时间线并打印到屏幕上。

我修改了 Android 的代码,但当我尝试下载用户时间线时出现 TwitterException。我检查了调试器,异常为空;没有给出任何信息。我还根据之前的建议将互联网权限添加到了 android 清单中。代码如下:

package com.test;

import java.util.List;


import twitter4j.Status;
import twitter4j.Twitter;
import twitter4j.TwitterException;
import twitter4j.TwitterFactory;
import android.app.Activity;
import android.os.Bundle;

public class Test2 extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        List<Status> statuses = null;
        Twitter api = new TwitterFactory().getInstance("USERNAME","PASSWORD");

        try{
         statuses = api.getUserTimeline();
        }
        catch(TwitterException e){
            System.out.println("ERROR");
            System.exit(-1);
        }
        for(Status s: statuses){
            System.out.println(s.getText());
        }
    }
}

我意识到这只打印到控制台,只是为了保持简单。

感谢您的任何和所有帮助。

I'm experimenting with twitter4j on android (new to both) coded up a simple process in java just to test it out. It downloads a users timeline and prints to screen.

I modify the code for android, but I get a TwitterException when i try to download the user timeline. I checked out the debugger and the exception is null; no information given. I've also added the Internet permission to the android manifest on previous advice. Heres the code:

package com.test;

import java.util.List;


import twitter4j.Status;
import twitter4j.Twitter;
import twitter4j.TwitterException;
import twitter4j.TwitterFactory;
import android.app.Activity;
import android.os.Bundle;

public class Test2 extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        List<Status> statuses = null;
        Twitter api = new TwitterFactory().getInstance("USERNAME","PASSWORD");

        try{
         statuses = api.getUserTimeline();
        }
        catch(TwitterException e){
            System.out.println("ERROR");
            System.exit(-1);
        }
        for(Status s: statuses){
            System.out.println(s.getText());
        }
    }
}

I realise this only prints to the console, just to keep it simple.

Thanks for any and all help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如何视而不见 2024-09-14 21:56:52

确保您在 AndroidManifest.xml 文件中拥有 INTERNET 权限。

另外,不建议在 Android 上使用 System.out.println()。请使用 android.util.Log 类并将调试输出发送到 LogCat(可通过 adb logcat、DDMS 或 Eclipse 中的 DDMS 透视图获取)。

Make sure you have the INTERNET permission in your AndroidManifest.xml file.

Also System.out.println() is not recommended on Android. Please use the android.util.Log class and send your debugging output to LogCat (available via adb logcat, DDMS, or the DDMS perspective in Eclipse).

不必你懂 2024-09-14 21:56:52

请检查您的时间戳。每个HttpRequest都包含当前时间戳,如果时间戳错误则抛出异常。

Please check your timestamp. Each HttpRequest contain current timestamp, if the timestamp is wrong then it throw exception.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文