News

How to Create Bitmap Objects of an Image File on Android. Developing apps for the Android platform allows you to handle various media types users have on mobile devices, including image files.
Copying objects is a common Java programming operation that has one serious trap. Here's how to avoid copying from an object reference and only copy the instance and values you want.
Macromedia calls CFML "a scripting layer for J2EE." The ability to integrate Java into ColdFusion provides all sorts of opportunities, including access to freely and commercially available Java ...
Every Object in Java includes an equals() and a hashcode() method, but they must be overridden to work properly. To understand how overriding works with equals() and hashcode() , we can study ...
This post shows readers how to create an array in Java. Including: Array Lists, multidimensional arrays, maps, and more.
Will Java object serialization target the file-system? Will the Java object serialized across a network? Will the serialized Java object be delivered to an external system. In this case we will ...
Automatic Java stub generation. Have no fear, json gen is here.This handy website will take in a few parameters and give you back a zip file containing all of the Java object stubs generated by ...
Creating Java objects We'll start with a simple Java class called SimpleMath. We're interested in its addNumbers() method (or "function" to us ColdFusion folk).