[3 May 2013 | 2 Comments | 305 views]

Project Description

  • In this example, we will see how to create a simple expandable list view using Android’s ExpandableListView widget. Also we will see how to delete child items in listview
  • Expandable List allows two levels – groups which can
  • Read more…

[21 Apr 2013 | No Comment | 44 views]

Project Description

  • This JDBC example explains how to retrieve all rows from a MySQL database table.
  • We use an ‘Employee’ table created in MySQL and retrieve all employee details.
  • We use Singleton (for making database connection), Data Access Object (DAO)
  • Read more…

[21 Apr 2013 | No Comment | 82 views]

Project Description

  • This JDBC example demonstrates how to retrieve a row from a database table.
  • We use an ‘Employee’ table created in MySQL and retrieve a particular employee record details.
  • We use Singleton (for making database connection), Data Access Object
  • Read more…

[21 Apr 2013 | No Comment | 109 views]

Please go through this post (for beginners) before referring our JDBC examples to understand better.

Download and Install Databases

Depending on your requirement you may use any database. We show the mostly used ones.

Oracle

If you are going to Read more…

[21 Apr 2013 | 2 Comments | 328 views]

Project Description

  • In one of my previous tutorials, I explained how to download an image from URL in background and load it in ImageView using android.os.AsyncTask.
  • In this example, we will see how to download multiple files from URL
  • Read more…

[25 Jan 2013 | 2 Comments | 1,281 views]

In Part 1 of this tutorial, we saw how to develop and deploy EJB in JBoss AS using Maven in Eclipse. In this EJB Maven tutorial we will see how to develop and run the EJB client (using Maven) Read more…

[24 Jan 2013 | No Comment | 2,051 views]

In this EJB3 Maven tutorial, we will see how to build and deploy EJB3 in JBoss AS 7 using m2eclipse plugin which provides Maven integration in Eclipse IDE. This tutorial is split into 2 parts with this part containing the Read more…

[21 Jan 2013 | No Comment | 650 views]

In this tutorial, we will see how to install m2eclipse plugin which provides Maven integration in Eclipse IDE. m2eclipse provides first-class Apache Maven support in the Eclipse IDE, making it easier to edit Maven’s pom.xml, run a build from the Read more…

[24 Dec 2012 | 4 Comments | 3,912 views]

In my previous tutorial we saw how to create a simple RESTful web service using Jersey. In this RESTful web service example we will create the same webservice using Apache CXF as JAX-RS implementation.

CXF supports the Java API for Read more…

[22 Dec 2012 | 4 Comments | 1,684 views]

Android PackageManager class is used for retrieving various kinds of information related to the application packages that are currently installed on the device. You can get an instance of this class through getPackageManager().

Project Description