caushik conjetty sekhar

Greenhorn
+ Follow
since Mar 03, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
1
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by caushik conjetty sekhar

when to use serialization in a program or an application?
I have read concepts in serialization but when to use in a real time scenario?
11 years ago

Janarthan S Sathiamurthy wrote:import java.util.Collections;

List myList = new ArrayList();
String[] myStringArray = new String[] {"Java", "is", "Cool"};

Collections.addAll(myList, myStringArray);

After this code, 'myList' should contain all the elements from the array.

Best regards,
Janarthan S




very good thread!
11 years ago
We use POST method when we want to submit the data to the server, For example if you are submitting the details of an employee. Use GET method when you want to bookmark your page or retrieve simple data. GET is not secure since the data is appended in the URL, in POST data is sent in the body so the data is not seen to outside world.
11 years ago

Manjunath Gajula wrote:Hi Agarwal,
Why have you decided to disable BACK button? Are you facing any problem when user clicks on back button?



Please give a solution..
11 years ago
JSP