com.playonlinux.core.python.JsonCodec.java Source code

Java tutorial

Introduction

Here is the source code for com.playonlinux.core.python.JsonCodec.java

Source

/*
 * Copyright (C) 2015 PRIS Quentin
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

package com.playonlinux.core.python;

import java.io.IOException;
import java.util.Map;

import com.fasterxml.jackson.databind.ObjectMapper;

/**
 * Jython 2.5.3 does not handle json library. This class is a workaround
 */
public class JsonCodec {
    private JsonCodec() {
        // Utility class
    }

    public static String dumps(Map<String, Object> map) throws IOException {
        return new ObjectMapper().writeValueAsString(map);
    }

    public static Map loads(String json) throws IOException {
        return new ObjectMapper().readValue(json, Map.class);
    }
}