425 reputation
1414
bio website
location United States
age 35
visits member for 4 years
seen Mar 27 at 23:35
stats profile views 167

I have to think about it!! Lets see next time :)


Jul
12
comment Cheque Number problem
Please consider CHECK_NUM as alphanumeric.
Jul
12
comment Cheque Number problem
I did this but I was getting 'ORA-01722: invalid number' error and the 2nd thing is that if the check_num will be 123FD5 then how it will function?
Jul
12
asked Cheque Number problem
Jun
2
accepted How to get data from Set in one go
May
29
comment How to get data from Set in one go
Here is developed code: private String collectionToCommaSeparatedString(Collection<String> value){ Iterator<String> it = value.iterator(); StringBuilder result = new StringBuilder(); while ( it.hasNext() == true ) { result.append( it.next()); if(it.hasNext()) result.append(","); } return result.toString() ; }
May
29
comment How to get data from Set in one go
I am a developer in my team therefore I can’t ask architecture team to use a new jar file for only these kinds of transformation. So finally I have made a generic method which will convert collection data to comma separated string, I asked this question because I thought some intelligent guys know some better and optimized solution.
May
29
revised How to get data from Set in one go
added 20 characters in body
May
29
comment How to get data from Set in one go
This is from Java Language
May
29
comment How to get data from Set in one go
Not bad idea, but for above code I have to used commons-lang.jar file which is not acceptable in my case.
May
29
revised How to get data from Set in one go
added 15 characters in body
May
29
comment How to get data from Set in one go
Thanks for your answer :)
May
29
asked How to get data from Set in one go
May
28
accepted Design For a scenario
May
28
accepted EJB and Synchronization
May
28
accepted Antonyms of “parsing” in terms of XML
May
22
asked Antonyms of “parsing” in terms of XML
May
21
comment Design For a scenario
Make sense sir, anything quick and optimized solution if you can think about it?
May
21
comment Design For a scenario
I just wanted to check with others if they have some really good ideas to design/develop this kind of scenarios. Please leave your suggestion if you have any.
May
21
accepted Best Design for the scenario
May
21
asked Design For a scenario