Showing posts with label java term. Show all posts
Showing posts with label java term. Show all posts

Tuesday, September 27, 2011

How to Parse String into Date

After creating the DAO (Data Access Object) of Equipment History Software there is one interesting thing that Ar-Rohman Software House Team have learned. The thing is Parsing String Data Type into Date Data Type. As we know that basically all programs, software, or applications input are usually using character (char, String, etc.) or numbers (int, float, etc.). What if it input in the Date data type form ? Here's the tutorial to parse String data type into Date data type using Java.

Tuesday, September 6, 2011

Java LinkedList Collection Framework

What is a LinkedList ? LinkedList is a class extend from java.util.AbstractSequentialList and implement the interface List and Deque, this framework is used to handle the type of data structures stack and queue. In this post I will not discuss about the stack and queue. so I just focus on How to Implement  Stack & Queue in Java.

Thursday, August 18, 2011

Why We Use Java ArrayList

This time Ar-Rohman Software House Team will discuss about The ArrayList where before we had wrote about Framework Collection in Java. OK, What is ArrayList ? Which Class that implements the interface List. ArrayList advantages compared with other types of data structure is its ability to be flexible. Flexible mean here is the number of index can be changed automatically when adding or reducing the element.

Sunday, August 14, 2011

Write One, Run Everywhere

Java Logo
The post title above is one of the main advantages when we use the Java software programming language. "Write One, Run Everywhere" meaning is when the Java program has been made then no longer have to worry it will run on any platform. Then, What about the mechanisms ?

Saturday, August 6, 2011

Java Collection Framework

Java Collection Framework
The Collection Framework is a unified architecture for representing and manipulating collections, allowing them to be manipulated independently of the details of their representation. It reduces software programming effort while increasing performance. It allows for interoperability among unrelated APIs, reduces effort in designing and learning new APIs, and fosters software reuse. The framework is based on fourteen collection interfaces. It includes implementations of these interfaces, and algorithms to manipulate them.

Tuesday, August 2, 2011

Java's Terms

java's term
After learning about Java's Technology, let us now move to the next material about the Java’s Terms or it could be called as the Java Jargon. The terms that need to be understood at the level of the Java software programming language introduction can be seen in the table below.