여러 Json의 lib 기록

4414 단어 json
1, jettison
jettison은 json과 xml 형식을 변환할 수 있으며, 이러한 경로를 통해 json 문자열을 자바 대상으로 해석할 수 있습니다.STAX 방식으로 json 변환을 진행하는데 사용법은 다음과 같다.
public class Parse

{

	/**

	 * @param args

	 * @throws JSONException 

	 */

	public static void main(String[] args) throws JSONException

	{

		JSONObject userString = new JSONObject("{\"jaxb\":{\"name\" : \"abc\"}}");



		AbstractXMLStreamReader reader = null;

        try

        {

	        reader = new MappedXMLStreamReader(userString);

	        

	        try

            {

	            JAXBContext jc = JAXBContext.newInstance(Jaxb.class);

	            

	            Unmarshaller unmarshaller = jc.createUnmarshaller();

	            

	            Object jaxb = unmarshaller.unmarshal(reader);

	            

	            System.out.println(jaxb);

	            

	            StringWriter sw = new StringWriter();

	            MappedNamespaceConvention con = new MappedNamespaceConvention(new Configuration());

	            XMLStreamWriter xsw = new MappedXMLStreamWriter(con, sw);

	            

	            Marshaller marshaller = jc.createMarshaller();

	            marshaller.marshal(jaxb, xsw);

	            

	            System.out.println(sw.toString());

	            try

                {

	                sw.close();

                } catch (IOException e)

                {

	                e.printStackTrace();

                }

	            

            } catch (JAXBException e)

            {

	            e.printStackTrace();

            }

        } catch (XMLStreamException e1)

        {

	        e1.printStackTrace();

        }

		

        if (reader != null)

        {

			try

            {

                reader.close();

            } catch (XMLStreamException e)

            {

                e.printStackTrace();

            }

        }

	}



}


 
2,jackson
jackson은 루트 속성을 대상 유형으로 식별할 수 있는지(jettison회, json-lib회, jackson기본회, 옵션에 따라 판단), 식별할 수 없는 속성을 만났을 때 이상을 던질 수 있는지(jettison회, json-lib회, jackson기본회, 옵션에 따라 판단할 수 있음) 등 유연한 전환 전략을 제공할 수 있다.
public class DataBindingParser

{



	/**

	 * @param args

	 */

	@SuppressWarnings("unchecked")

    public static void main(String[] args)

	{

		String userString = "{\"User\":{\"name\" : { \"first\" : \"Joe\", \"last\" : \"Sixpack\" },\"gender\" : \"MALE\", \"verified\" : false, \"userImage\" : \"Rm9vYmFyIQ==\"}}";

		String userStringEx = "{\"name\" : { \"first\" : \"Joe\", \"last\" : \"Sixpack\" },\"gender\" : \"MALE\", \"age\" : 18, \"verified\" : false, \"userImage\" : \"Rm9vYmFyIQ==\"}";

		

		ObjectMapper mapper = new ObjectMapper(); 

		

		try

		{

			mapper.enable(DeserializationFeature.UNWRAP_ROOT_VALUE);

			mapper.enable(SerializationFeature.WRAP_ROOT_VALUE);

			User user = mapper.readValue(userString, User.class);

			System.out.println("userString-->" + user);

			System.out.println("userString<--" + mapper.writeValueAsString(user));

			

			mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);

			mapper.disable(DeserializationFeature.UNWRAP_ROOT_VALUE);

			User userEx = mapper.readValue(userStringEx, User.class);

			System.out.println("userStringEx-->" + userEx);

			System.out.println("userStringEx<--" + mapper.writeValueAsString(userEx));

			System.out.println("=========================");

			

            Map<String,Object> userData = mapper.readValue(userString, Map.class);

			System.out.println("userString-->" + userData);

			System.out.println("userString<--" + mapper.writeValueAsString(userData));

			

            Map<String,Object> userDataEx = mapper.readValue(userStringEx, Map.class);

			System.out.println("userStringEx-->" + userDataEx);

			System.out.println("userStringEx<--" + mapper.writeValueAsString(userDataEx));

			

		} catch (JsonParseException e)

		{

			e.printStackTrace();

		} catch (JsonMappingException e)

		{

			e.printStackTrace();

		} catch (IOException e)

		{

			e.printStackTrace();

		}

	}



}


  

좋은 웹페이지 즐겨찾기