Nitesh Suthar

Greenhorn
+ Follow
since Feb 26, 2012
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
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nitesh Suthar

Replace your this code
==================================
operatorDetail=null;
operatorList=null;
SessionText = null;
IPText =null;
DurationText=null;
StatusText=null;
NoOfVisit=null;
ButtonText=null;

operatorDetail = result.split(delimiter1);

SessionText = new ArrayList<String>();
IPText = new ArrayList<String>();
DurationText = new ArrayList<String>();
StatusText = new ArrayList<String>();
NoOfVisit = new ArrayList<String>();
ButtonText = new ArrayList<String>();
=====================================
With Following Code
=====================================
operatorDetail=null;
operatorList=null;
SessionText.clear();
IPText.clear();
DurationText.clear();
StatusText.clear();
NoOfVisit.clear();
ButtonText.clear();

operatorDetail = result.split(delimiter1);
=====================================


12 years ago