Powered by Blogger.

Atlassian - Issue & Project Tracking Software

>> Saturday, May 18, 2013

Atlassian_logoIn Current market Atlassian is the major project tracking software using by all software companies.
We must  know, what is this software and what is the main purpose of this in real time world. Actually a normal software developer can develop code using MyEclipse or NetBeans IDEs. Then he can commits the code using SVN or CVS. Once he committs the code each file can get a version number in repository.If you want to check which line of code we modified or added or removed we don't know.again we should compare from history. But in Atlassin fisheye we can find all the changes you committed and which line deleted and which line committed, we can find easily with colors. Atlassian reduces developer efforts and reduces time all the things automated by atlassian once the code committed to repository.

Actually this software contains several products with in this to tack the issues and maintenance the software in the normal software companies.

Read more..

Addition or Sum of 2x2 matrix using Arrays in java

>> Sunday, May 5, 2013

We know that arrays are different types, as usual one dimensional array, two dimensional array, three and multi (mxn) dimensional arrays.
In two dimensional arrays we need 2x2 array.

A 2x2 matrix is a rectangular often square array of numbers having 2 columns and 2 rows, or expressions which can be evaluated to numbers. The dimensions m x n refer to the number of rows (m) and columns (n) respectively.

We can declare the one dimensional array as:
int[] myArray = {0,1,2,3};
and two dimensional array looks like this:
 int[][] myArray = { {0,1,2,3}, {3,2,1,0}, {3,5,6,1}, {3,8,3,4} };


Read more..

Nataraz sir moving from Sathya Techologies to Durga Soft

>> Sunday, March 24, 2013

The Great Nataraz sir trained more than 10,000 students in Java technologies in 9 years  from Sathya Technologies, now he decided to stop his valuable services from Sathya Technologies.

He made a contract with Durga Software Solutions to train IT Professionals from May 1st week 2013. The current batches which are running those will be completed by April month. Other wise the administration will decide what to take further steps.

All are thankful to Sathya Technologies , by providing such a good classes and good environment to run the classes and you made many professionals in java with Nataraz Sir.

Read more..

Importance of toString() in java

>> Saturday, October 20, 2012

Object to String using toString method_JavabynataraJ
Object class of Java is having predefined toString() method. This method by default Object class calls implicitly when an object created. Overriding toString manually is nothing but implementing this method in our class.The java toString() method is used when we need a string representation of an object. It is defined in Object class.

The toString() method is useful for debugging. By default, when an object is printed out in a print stream like System.out, the toString() method of the object is automatically called.
While develping the code the developers used to check the object properties are getting through the object or not. For this print statement will be useful to quick test in the console.

public String toString()
Returns: a string representation of the object.
Let us take a Person class and try to print the person object using the System.out.println() statement.

Read more..

How to sort an ArrayList

>> Tuesday, October 2, 2012

Sorting any ArrayList is pretty simple. Using Collections.sort( ) method we can sort the ArrayList. Collections class having all the static methods, we can use those methods directly along with the class name. These methods return the object as type Collection.

The important methods to synchronize the List, Set and Map as

synchronizedList(List<T> list)
synchronizedSet(Set<T> s)
synchronizedMap(Map<K,V> m) 

A simple program to sort an ArrayList

Read more..

Starting Struts2 by Ian Roughley eBook Download

>> Sunday, September 30, 2012

Struts2 is the latest manifestation of the popular Struts Java web application framework. Like its predecessor, its goals are to make web application development faster, easier and more productive than ever before. Despite new languages and new techniques, the action-base MVC framework is still a viable and effective option for modern web application development.

Within this book you will find everything you need to get up and running using Struts2 - from the architecture and configuration, to implementing actions and the supporting infrastructure such as validation and internationalization.

The concepts covered by this book:
  • WHERE STRUTS2 FITS INTO THE WEB PARADIGM
  • CORE COMPONENTS
  • ARCHITECTURAL GOALS
  • PRODUCTIVITY TIPS
  • INTEGRATING WITH OTHER TECHNOLOGIES

Read more..

Related Posts Plugin for WordPress, Blogger...
© javabynataraj.blogspot.com from 2009 - 2022. All rights reserved.