Android Post Status to Twitter using Jtwitter- Example

 

In android, we can able to post a status to twitter by using jtwitter. Its very simple to post a status in twitter. For that we need jtwitter.jar. you can download the jwitter.jar from here
Post Status in Twitter Example :-
Create a new android project,
Add the below code in your AndroidManifest.xml for internet permission

1<uses-permission android:name="android.permission.INTERNET"/>

Now we need to add Jtwitter to our project. Download the jwitter and save it in local drive.
Click the Android Project –> Properties — > (In left Pane) Java Build Path — > Libraries
In Libraries Tab click the ‘Add External Jars’ Button and then add the Jtwitter jar file.

Edit your java file

01package org.androidpeople.twitter;
02 
03import winterwell.jtwitter.Twitter;
04import winterwell.jtwitter.TwitterException;
05import android.app.Activity;
06import android.os.Bundle;
07import android.widget.Toast;
08 
09public class TwitterExample extends Activity {
10 
11    Twitter twitter;
12 
13    @Override
14    public void onCreate(Bundle savedInstanceState) {
15        super.onCreate(savedInstanceState);
16        setContentView(R.layout.main);
17 
18        // Set your Twitter username / Password
19        twitter = new Twitter("username","password");
20 
21        try
22        {
23            //Status to post in Twitter
24            twitter.setStatus("This is my first Tweet from Android -  AndroidPeople.com");
25            Toast.makeText(TwitterExample.this"Article Posted to Twitter Successfully!!", Toast.LENGTH_SHORT).show();
26        }
27        catch(TwitterException.E401 e)
28        {
29            // comes here when username or password is wrongs
30            Toast.makeText(TwitterExample.this"Wrong Username or Password,Kindly Check your logins",Toast.LENGTH_SHORT).show();
31        }
32        catch(Exception e)
33        {
34            Toast.makeText(TwitterExample.this"Network Host not responding",Toast.LENGTH_SHORT).show();
35        }
36    }
37}

Now run the application.
The output will looks like

Download the full source code of Twitter Example from here

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值