Все вопросы: [jyaml]
2 вопросов
0
голосов
2ответов
468 просмотров
Perl YAML::Syck encoded string, howto properly decode in Java using JYaml?
Using beanstalkd and putting a job in tube/queue that contains a hash that is YAML::Syck encoded (with $YAML::Syck::ImplicitTyping = 1). I need some syntax help on the Java end, as to how to decode handle that string pulled from the beanstalkd job. The Perl hash ends up being encoded as a YAML...
1
голосов
2ответов
1497 просмотров
JYaml: дамп объекта без включения имени класса
У меня есть ArrayList объектов, выгружаемых в строку YAML, и я сравнивал производительность JYaml и SnakeYaml при их обработке. ArrayList<HashMap> testList = new ArrayList<HashMap>(); HashMap<String, String> testMap1 = new HashMap<String, String>(); HashMap...