32,594 reputation
72143
bio website
location Baltimore, MD
age 38
visits member for 2 years, 1 month
seen 15 mins ago
stats profile views 3,260

Twelve plus years in software development, mainly as a Java guy. Most of that has been Enterprise Development, but now I am branching out to more agile projects using lots of interesting OSS technologies.

  1. JEE 6 is the redemption of the Java Enterprise Platform
  2. RESTful service based architectures are very powerful, when used appropriately
  3. This multi-language, multi-paradigm development world is a very interesting one for companies and developers alike.
  4. Java is not dead, not by a long shot!

I'm currently building out a highly available service platform (SOA) using JEE 6 and RESTful architectural principles.

Contact Email: tuoyo.ekperigin@gmail.com


4h
comment Deserialize JSON to Java Map<Integer,Object> with jackson
Theres no automatic way to deserialize your keys back into the object values, if thats what you're asking. You would need to write a custom deserializer to accomplish what your looking for.
12h
comment Sending json files in curl requests with absolute or relative paths
Are you certain you are using a full path? Or that if you are using a relative path thats it truly exists relative to your working directory? I doubt that the version of curl is the problem (though it might be a possibility).
19h
comment org.codehaus.jackson.JsonParseException: Unexpected character ('' (code 65279 / 0xfeff)): expected a valid value
You code is (most likely) fine. The parser is choking on a byte order mark at the beginning of your data. You will either need to prevent it being sent on your WCF server side, or deal with it in your Android client.
19h
answered How i can recover a Map of objects from json?
19h
revised Pass parameterized type to method as argument
added 1 characters in body; edited title
19h
revised Error using Jackson and Json
deleted 21 characters in body
1d
comment Deserialize JSON to Java Map<Integer,Object> with jackson
Your question doesn't really make sense. Declare the id where? You have an object model that gets serialized to a JSON format - are you trying to omit the id from being serialized in the 'object' part, since you are already using them as keys?
1d
comment How i can recover a Map of objects from json?
The Json class is not part of any version of Jackson I know. Is that custom code? If so, include it in your question please.
1d
comment Sending json files in curl requests with absolute or relative paths
curl 7.21.4 (universal-apple-darwin11.0) libcurl/7.21.4 OpenSSL/0.9.8r zlib/1.2.5
2d
comment Error parsing data org.json.JSONException: End of input at character 0 of when I run on real device
Your error doesn't seem directly related to JSON parsing. You might want to read this thread: stackoverflow.com/questions/13670374/…. You really should add your LoginActivity code to the question.
2d
revised Error parsing data org.json.JSONException: End of input at character 0 of when I run on real device
added 274 characters in body
2d
answered Error parsing data org.json.JSONException
2d
answered Anonymous Uploading File object to Imgur API (JSON) gives Authentication Error 401
2d
revised Anonymous Uploading File object to Imgur API (JSON) gives Authentication Error 401
added 367 characters in body
May
19
comment how to check key available or not in json response in ios
@Mr.G - which Android API are you referring too? There are three different ones.
May
18
revised How to send JSON data as parameter from Android to Jersey RESTful Service
added 5 characters in body
May
18
revised GSON parsing without a lot of classes
deleted 4 characters in body
May
18
comment Using Custom Fonts [java.io.IOException: Error reading font data.]
Instead of AddFont.class.getResourceAsStream(FONT_PATH_TELEGRAFICO) try Thread.currentThread().getContextClassLoader().getResourceAsStream(FONT_PATH_TE‌​LEGRAFICO).
May
18
comment Setting Danish Character Text
You need to include the Apache Commons Lang library in your project. I included a link to it in the answer.
May
18
comment ClassNotFound exception
Samples of your code are worth a thousand words here.