Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here is my code. In this I log in through fb and its working fine, but when trying to get Facebook id and email address for further requirement, it is showing ExceptionInInitializerError,..

Can anyone help me out??

public class Activity_DealsCircleApplicationActivity extends Activity  implements        LocationListener{


boolean isLoggedIn = false;
String accessToken = "";
private static boolean isAuthOK = false;
private ImageView buttonfacebook;
EditText edittexemail;
String email,city,cityName;
private ProgressDialog progressDialog;
private ImageView buttongetStart;
int count;
EditText edcity,edaddress;
ArrayList<String> cityarraylistnew = new ArrayList<String>();
ArrayList<String> discountarraylistnew = new ArrayList<String>();
ProgressDialog getinfodialog;
String teststr = "helloooo";
Context mCtx;
MyHelper helper;
TextView textesine, ortext;
Typeface mtype;
Facebook facebook = new Facebook("403041546399849");
String permission[]={"email", "publish_stream","friends_about_me", "offline_access","friends_birthday"};
SharedPreferences pref;
final String KEY_ITEM="joincircl";
final String KEY_CITY="city";
SharedPreferences settings;
private TextView latituteField, longitudeField, accuracyField, altitudeField,   bearingField; 
    private LocationManager locationManager;
    private String provider,longitude,latitude;
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater myMenuInflater = getMenuInflater();
    myMenuInflater.inflate(R.menu.options, menu);

    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // TODO Auto-generated method stub
    switch (item.getItemId()) {
    case R.id.logout:
        switch (item.getItemId()) {
        case R.id.logout:
            try {
                String response=facebook.logout(getApplicationContext());
                Log.i("response logout",""+response);
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            Toast.makeText(getApplicationContext(), "Logout", 200).show();
            buttonfacebook.setClickable(true);

        }
        break;  

    default:
        break;
    }
    return true;
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
     SessionStore.restore(facebook, this);
     helper = new MyHelper(this);
 locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    // Define the criteria how to select the locatioin provider -> use default  
    Criteria criteria = new Criteria();
    provider = locationManager.getBestProvider(criteria, false);
    Location location = locationManager.getLastKnownLocation(provider);
  if (location != null) {

      onLocationChanged(location);
    } else {

     } mCtx = this;

    edittexemail=(EditText)findViewById(R.id.editemail);

    textesine=(TextView)findViewById(R.id.textemsine);
    ortext=(TextView)findViewById(R.id.text);

     mtype=Typeface.createFromAsset(getAssets(),"font/newstyle.otf");

     edittexemail.setTypeface(mtype);
     textesine.setTypeface(mtype);
     ortext.setTypeface(mtype);

             //----------------------------------------------------------------------------

     String cityurl = "http://joincircl.com/api/index.php?action=get_cities";


        XMLParser parser = new XMLParser();
        String xml = parser.getXmlFromUrl(cityurl); // getting XML from URL
        Document doc = parser.getDomElement(xml); // getting DOM element

        NodeList nl = doc.getElementsByTagName(KEY_CITY);
        // looping through all song nodes <song>
        Log.i("sdfgfdsdfgfdsdfd", ""+nl.getLength());
        try{
        for (int i = 0; i < nl.getLength(); i++) {

            Element e = (Element) nl.item(i);

            String[] cityplusdiscount =  parser.getValue(e, KEY_CITY).split(", ");

            cityarraylistnew.add(cityplusdiscount[0]);
            discountarraylistnew.add(cityplusdiscount[1]);
       }
        }catch(Exception e)
        {
            System.out.println(e+"       Array index out of bound");
        }
        finally{

        }
    //----------------------------------------------------------------------------
     edittexemail.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            edittexemail.setText("");
        }
    });

     pref=getSharedPreferences("",MODE_PRIVATE);
        String access_token = pref.getString("access_token", null);
        long expires = pref.getLong("access_expires", 0);
        if(access_token != null) {
            facebook.setAccessToken(access_token);
        }
        if(expires != 0) {
            facebook.setAccessExpires(expires);
        }
    InIt();
    setsonclicklistner();


    buttongetStart=(ImageView)findViewById(R.id.btngetstarted);
    buttongetStart.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {

            progressDialog = ProgressDialog.show(Activity_DealsCircleApplicationActivity.this,null, "Loading...");

            if(edittexemail.getText().toString().matches("[a-zA-Z0-9._-]+@[a-z]+\\.+[a-z]+") && edittexemail.getText().toString().length()> 0)
            {
                String url="http://joincircl.com/api/index.php?action=user_register&user_email="+edittexemail.getText().toString()+"&user_city="+city;

                DefaultHttpClient httpClient = new DefaultHttpClient();
                HttpPost httpPost = new HttpPost(url);          

                try {
                    HttpResponse httpResponse = httpClient.execute(httpPost);

                } catch (ClientProtocolException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }


                String uid = null;

                String URL = "http://joincircl.com/api/index.php?action=user_register&user_email="+edittexemail.getText().toString()+"&user_city="+city;
                XMLParser parser = new XMLParser();
                String xml = parser.getXmlFromUrl(URL);  // getting DOM element
                Document doc = parser.getDomElement(xml);
                String KEY_CIRCL = "joincircl"; 
                String KEY_ID = "user_id";

                NodeList nl = doc.getElementsByTagName(KEY_CIRCL);
                // looping through all song nodes <song>
                for (int i = 0; i < nl.getLength(); i++) {
                Element e = (Element) nl.item(i);
                uid=parser.getValue(e, KEY_ID);


                }
                pref=getSharedPreferences("User", MODE_WORLD_READABLE);
                SharedPreferences.Editor edit=pref.edit();
                edit.putString("userId", uid);
                edit.commit();
                progressDialog.show();
                final Handler handler = new Handler(Looper.getMainLooper());


                 new Thread(new Runnable() {
                       public void run() {
                           Intent intent = new Intent(Activity_DealsCircleApplicationActivity.this, HorzScrollWithListMenu.class);
                      String name=edittexemail.getText().toString();
                         Bundle bundle = new Bundle();
                         bundle.putString("editemail",name );

                       startActivity(intent);
                       count=1;
                     helper.inserData(count);
                              handler.post(new Runnable() {
                                               public void run() {
                                                        progressDialog.show();
                                                   progressDialog.dismiss();
                                                    }
                                                  });
                                       }

                      }).start();
            finish();
        }
            else
            {

                Toast.makeText(getBaseContext(),"you have Enter Invalied Email", Toast.LENGTH_SHORT).show();
            }
                            } 
            });

         Cursor myCur = helper.getMyData();

    if(myCur.moveToFirst() && myCur != null)
    {
            if(myCur.getInt(0)== 1)
            {
                 Intent intent = new Intent(Activity_DealsCircleApplicationActivity.this, HorzScrollWithListMenu.class);
                startActivity(intent);
                finish();
            }

    }else{
    }   
}
  @Override
  protected void onResume() {
    super.onResume();
    locationManager.requestLocationUpdates(provider, 400, 1, this);
  }
  @Override
  protected void onPause() {
    super.onPause();
    locationManager.removeUpdates(this);
  }


  public void onLocationChanged(Location location) {
    Double lat = (Double) (location.getLatitude());
    Double lng = (Double) (location.getLongitude());

     longitude=(String.valueOf(lng));
    latitude=(String.valueOf(lat));


    pref=getSharedPreferences("User", MODE_WORLD_READABLE);
    SharedPreferences.Editor editor = pref.edit();
    editor.putString("FINALLONG",longitude );
    editor.putString("FINALLAT",latitude );

    editor.commit();

  } public void onStatusChanged(String provider, int status, Bundle extras) {
    // TODO Auto-generated method stub

  }public void onProviderEnabled(String provider) {


  } public void onProviderDisabled(String provider) {

  }private void InIt() {
    // TODO Auto-generated method stub
    buttonfacebook = (ImageView)    findViewById(R.id.btnfbbutton);

}

private void setsonclicklistner() {

      buttonfacebook.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            doStuff();

           } 
    });
}

// here login button listener is called
View.OnClickListener loginlistener=new View.OnClickListener() {


    public void onClick(View v) {
        doStuff();

    }};private void doStuff() {

        if (facebook.isSessionValid()) {
            try {
                facebook.logout(getApplicationContext());
                //doStuff();
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        } else if (facebook.isSessionValid()) {

            try {
                facebook.logout(getApplicationContext());
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

        } else {
            facebook.authorize(this,
                    new String[] { "publish_stream", "email" },
                    new DialogListener() {

                        //@SuppressLint("ShowToast")

                        public void onComplete(Bundle values) {

                            isAuthOK = true;

                            Log.d("COMPLETE", "AUTH COMPLETE. VALUES: "
                                    + values.size());
                            Log.d("AUTH TOKEN",
                                    "== " + values.getString(Facebook.TOKEN));
                            accessToken = values.getString(Facebook.TOKEN);
                            Toast.makeText(getApplicationContext(),
                                    "Welcome to Facebook Wait for account varification" , 5000).show();
                            Thread t = new Thread(new Runnable() {

                                public void run() {
                                    Bundle bundle = new Bundle();

                                    bundle.putString(Facebook.TOKEN,
                                            accessToken);

                                    try {
                                        String response = facebook.request(
                                                "me", bundle, "GET");

                                        final JSONObject json;
                                        try {
                                            json = new JSONObject(response);
                                            String name = json.getString("name");
                                            String fId = json.getString("id");
                                            String username = json.getString("username");
                                                     email = json.getString("email");
                                            System.out.println("name " + name
                                                    + " email is " + email
                                                    + "  username " + username
                                                    + " id is  " + fId);

                                            sendPostRequest(fId, username, email);
                                            facebook.logout(getApplicationContext());
                                            Log.d("CANCELLEDlog", "AUTH loggedout");

                                        } catch (JSONException e) {
                                            // TODO Auto-generated catch block
                                            e.printStackTrace();
                                        }

                                    } catch (FileNotFoundException e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                    } catch (MalformedURLException e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                    } catch (IOException e) {
                                        // TODO Auto-generated catch block
                                        e.printStackTrace();
                                    }

                                }
                                private void sendPostRequest(String fid,
                                        String username, final String email) {
                                    // TODO Auto-generated method stub
                                    class SendPostReqAsyncTask extends
                                            AsyncTask<String, Void, String> {

                                        @Override
                                        protected String doInBackground(
                                                String... params) {

                                            String fId = params[0];
                                            String username = params[1];
                                            String email = params[2];

                                            System.out
                                                    .println("*** doInBackground ** id "
                                                            + fId
                                                            + " username :"
                                                            + username
                                                            + "email"
                                                            + email);

                                            HttpClient httpClient = new DefaultHttpClient();

                                            HttpPost httpPost = new HttpPost(
                                                    "http://myfistengine.appspot.com/user");


                                            BasicNameValuePair nameBasicNameValuePair = new BasicNameValuePair(
                                                    "fId", fId);
                                            BasicNameValuePair dobBasicNameValuePAir = new BasicNameValuePair(
                                                    "username", username);
                                            BasicNameValuePair emailBasicNameValuePAir = new BasicNameValuePair(
                                                    "email", email);
                                            BasicNameValuePair actionBasicNameValuePair = new BasicNameValuePair(
                                                    "action", "PUT");

                                            List<NameValuePair> nameValuePairList = new ArrayList<NameValuePair>();
                                            nameValuePairList
                                                    .add(nameBasicNameValuePair);
                                            nameValuePairList
                                                    .add(dobBasicNameValuePAir);
                                            nameValuePairList
                                                    .add(emailBasicNameValuePAir);
                                            nameValuePairList
                                                    .add(actionBasicNameValuePair);

                                            try {

                                                UrlEncodedFormEntity urlEncodedFormEntity = new UrlEncodedFormEntity(
                                                        nameValuePairList);

                                                // setEntity() hands the entity
                                                // (here it is
                                                // urlEncodedFormEntity) to the
                                                // request.
                                                httpPost.setEntity(urlEncodedFormEntity);

                                                try {
                                                    HttpResponse httpResponse = httpClient
                                                            .execute(httpPost);                                                     InputStream inputStream = httpResponse
                                                            .getEntity()
                                                            .getContent();

                                                     InputStreamReader inputStreamReader = new InputStreamReader(
                                                            inputStream);

                                                    BufferedReader bufferedReader = new BufferedReader(
                                                            inputStreamReader);

                                                    StringBuilder stringBuilder = new StringBuilder();

                                                    String bufferedStrChunk = null;

                                                    while ((bufferedStrChunk = bufferedReader
                                                            .readLine()) != null) {
                                                        stringBuilder
                                                                .append(bufferedStrChunk);
                                                    }

                                                    return stringBuilder
                                                            .toString();

                                                } catch (ClientProtocolException cpe) {
                                                    System.out
                                                            .println("First Exception caz of HttpResponese :"
                                                                    + cpe);
                                                    cpe.printStackTrace();
                                                } catch (IOException ioe) {
                                                    System.out
                                                            .println("Second Exception caz of HttpResponse :"
                                                                    + ioe);
                                                    ioe.printStackTrace();
                                                }

                                            } catch (UnsupportedEncodingException uee) {
                                                System.out
                                                        .println("An Exception given because of UrlEncodedFormEntity argument :"
                                                                + uee);
                                                uee.printStackTrace();
                                            }

                                            return null;
                                        }

                                        @Override
                                        protected void onPostExecute(
                                                String result) {
                                            super.onPostExecute(result);
                                System.out.println("facereturn result"+ result);
                                            Toast.makeText(
                                                    getApplicationContext(),
                                                    result, 6).show();
                                            edittexemail.setText(email);

                  //                                                      Intent it = new Intent(
               //                                                           getApplicationContext(),
        //                                                          HorzScrollWithListMenu.class);
      //                                                    startActivity(it);



                                            // Bundle basket = new Bundle();
                                            // basket.putString("key", result);

                                        }

                                    }
                                    SendPostReqAsyncTask sendPostReqAsyncTask = new SendPostReqAsyncTask();
                                    sendPostReqAsyncTask.execute(fid, username, email);
                                }
                            });
                            t.start();

                        }
                        public void onFacebookError(FacebookError e) {
                            isAuthOK = false;
                            Log.d("FACEBOOK ERROR",
                                    "FB ERROR. MSG: " + e.getMessage()
                                            + ", CAUSE: " + e.getCause());
                        }


                        public void onError(DialogError e) {
                            isAuthOK = false;
                            Log.e("ERROR", "AUTH ERROR. MSG: " + e.getMessage()
                                    + ", CAUSE: " + e.getCause());
                        }


                        public void onCancel() {
                            Log.d("CANCELLED", "AUTH CANCELLED");
                        }
                    });

        }
    }
    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data)    {
        super.onActivityResult(requestCode, resultCode, data);

        Log.d("onActivityResult", "onActivityResult");

        facebook.authorizeCallback(requestCode, resultCode, data);
    }

}

exception is occurring in below line:

     sendPostRequest(fId, username, email);
    /*--------*/
     SendPostReqAsyncTask sendPostReqAsyncTask = new SendPostReqAsyncTask();
     sendPostReqAsyncTask.execute(fid, username, email);
share|improve this question

closed as not a real question by artbristol, brian d foy, Troy Alford, Gagravarr, AVD Dec 28 '12 at 2:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Just add this line :

Looper.getMainLooper().prepare();
final Handler handler = new Handler(Looper.getMainLooper());
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.