736 reputation
110
bio website
location
age
visits member for 1 year, 7 months
seen yesterday
stats profile views 28

May
1
answered Any way to get a fully typed Class reference?
May
1
answered Register web.xml listeners using guice servlet module
Apr
25
answered How to avoid cast error generated by comparable interfaces
Apr
25
comment how to add processing instruction to xml with XMLBeans
That's not a processing instruction. That's the XML declaration (see w3.org/TR/REC-xml/#NT-XMLDecl). Processing instructions start with "<?" but cannot start with "<?xml" (w3.org/TR/REC-xml/#NT-PITarget). So is the question about XML decl or PIs?
Apr
24
comment How can I add specific objects into List
I don't think you want List<? extends Object>, that would match List<String> or List<Employee> but not both. List<Object> hold both (no ? extends).
Apr
24
revised Java String Split/Manipulation
Added regex construction.
Apr
24
answered Java String Split/Manipulation
Apr
24
comment JPA : Probem with mapping two fields of entity to a single column in the database
JPA containers are probably not smart enough to merge over the change from one field to another, even when told they map to the same column. Do you see the new value persisted in the database? If so, you probably have to flush() or even clear() the entity manager, then reload the EmployeeEntity to get it to reload the new dept. Either that, or set it manually.
Apr
24
answered How do I split a string in Java to different size parts?
Apr
23
revised Guice Binding for List of generic Objects
Expanded answer to include Provider alternative.
Apr
23
revised Guice Binding for List of generic Objects
Expanded answer to include singleton options.
Apr
23
answered Guice Binding for List of generic Objects
Apr
23
comment fetch value from cookie giving issue
Is the problem in IE? It could be a missing "Expires" header, see stackoverflow.com/questions/361231/…
Apr
19
answered Java ByteArray equivalent in C or C++
Apr
19
answered c - Removing comments (/* and //) and strings
Apr
19
awarded  Scholar
Apr
19
accepted Parse human-readable sizes (k, M, G, T) into bytes in C
Apr
19
comment Parse human-readable sizes (k, M, G, T) into bytes in C
Very nice. I think it needs one small addition after the switch if (sh && endp[1]) goto error; to handle input with extra characters at end.
Apr
19
comment Parse human-readable sizes (k, M, G, T) into bytes in C
Hi SuvP, didn't mean to imply that my code snippet above was a working solution--only to provide an example of what the code needs to do. The actual solution can come in any (similar) form.
Apr
19
revised Parse human-readable sizes (k, M, G, T) into bytes in C
removed unintentional std tag.