[21 Apr 2013 | 4 Comments | 43,040 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 | 9 Comments | 30,575 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 | 6 Comments | 71,663 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 | 15 Comments | 148,784 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 | 8 Comments | 47,626 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 | 41 Comments | 52,244 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

  • In this Android 4

Read more…

[21 Dec 2012 | 23 Comments | 83,931 views]

There are three types of Android XML parsers – DOM, SAX and XmlPullParser. You can use DOM and SAX parser API which are provided by Java platform. In addition to these two parsers, Android provides XmlPullParser which is similar to Read more…

[20 Dec 2012 | 13 Comments | 103,384 views]

Java Database Connectivity (JDBC) is a Java-based data access technology that defines how a client may access a database. It provides methods for querying and updating data in a database. The JDBC classes are contained in the Java package java.sql Read more…

[20 Dec 2012 | 2 Comments | 164,979 views]

Java Database Connectivity (JDBC) is a Java-based data access technology that defines how a client may access a database. It provides methods for querying and updating data in a database. The JDBC classes are contained in the Java package java.sql Read more…

[22 Nov 2012 | One Comment | 9,934 views]

Project Description

  • My previous Android examples on DOM parser store the XML file in project’s assets folder and opens the file as InputStream using AssetManager.
  • This example stores the XML file in server and uses android.os.AsyncTask to download and

Read more…