Created
April 2, 2015 06:54
-
-
Save msomu/792843b8242cb55abba3 to your computer and use it in GitHub Desktop.
simple example of Jackson on an Activity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ObjectMapper mapper = new ObjectMapper(); | |
| int one = 0; | |
| try { | |
| one = mapper.readValue("1", int.class); | |
| } catch (IOException e) { | |
| e.printStackTrace(); | |
| } | |
| Config.t(getBaseContext()," "+one); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment