Java中的args参数? (为了使用twitter4j库)

时间:2013-12-27 16:59:57

标签: java main twitter4j args

我想测试一下twitter4j库,如何在main参数中使用arg,以便程序不会在第一个括号中停止?

public class MyTest {

    public static void main(String[] args) {
        if (args.length < 1) { //HERE, it is always < 1
            System.out.println("Usage: java twitter4j.examples.tweets.ShowStatus [status id]");
            System.exit(-1);
        }
        try {

编辑:

完整的代码(我用...替换了键):我实际上想知道如何让twitter显示我的个人资料的详细信息,因为我只定义了我的应用程序的密钥(没有我的帐户哪个是不同的。)

public class MyTest {

    public static void main(String[] args) {
        if (args.length < 1) {
            System.out.println("Usage: java twitter4j.examples.tweets.ShowStatus [status id]");
            System.exit(-1);
        }
        try {
            ConfigurationBuilder cb = new ConfigurationBuilder();
            cb.setDebugEnabled(true)
              .setOAuthConsumerKey("...")
              .setOAuthConsumerSecret("…")
              .setOAuthAccessToken("…")
              .setOAuthAccessTokenSecret("...");
            TwitterFactory tf = new TwitterFactory(cb.build());
            Twitter twitter = tf.getInstance();

            Status status = twitter.showStatus(Long.parseLong(args[0]));
            System.out.println("@" + status.getUser().getScreenName() + " - " + status.getText());
            System.exit(0);
        } catch (TwitterException te) {
            te.printStackTrace();
            System.out.println("Failed to show status: " + te.getMessage());
            System.exit(-1);
        }
    }
}

1 个答案:

答案 0 :(得分:0)

你可以用参数调用MyTest。这将取决于您的IDE和编译器,但在eclipse中您可以配置启动配置(在Google上搜索&#34; eclipse启动配置&#34;)。或者你可以像这样破解一些东西:

public class MyTest {

public static void main(String[] args) {

    args = { "something", "something else", "you get the idea" };

    if (args.length < 1) { //HERE, it is always < 1
        System.out.println("Usage: java twitter4j.examples.tweets.ShowStatus [status id]");
        System.exit(-1);
    }
    try {