Last active
August 29, 2015 13:56
-
-
Save stevelippert/8959986 to your computer and use it in GitHub Desktop.
A bad example of not UTF8 decoding JSON text.
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
| #!/usr/local/bin/perl | |
| use JSON; | |
| $jsonData = new JSON; | |
| open my $fh, '<', "/home/slippert/settings.json"; | |
| my $rawJSONData = do { local $/; <$fh> }; | |
| eval{ $dataModel = $jsonData->decode($rawJSONData); }; | |
| close $fh; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment