Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How much of the core Java APIs are present in Android API

Tags:

java

android

How much of the core Java APIs are present in Android API? How proficient will I become in writing core Java applications by writing applications for Android phones?

like image 979
pradeep Avatar asked Feb 22 '11 12:02

pradeep


1 Answers

Android includes the essential packages from the Java SE API (java.lang, java.util, java.net, etc.) but it is nowhere near the full Java SE API. It excludes AWT, Swing, Java 2D, Java Sound, RMI, CORBA, the scripting API, JMX, JAXB, the Java Print Service API, parts of JDBC and probably several other things.

You can easily see for yourself by comparing the package lists for Android and Java SE.

like image 111
Dan Dyer Avatar answered Sep 28 '22 18:09

Dan Dyer