/QingTingFanBianYi/src/com/alibaba/fastjson/support/spring/FastJsonHttpMessageConverter.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 83 lines · 68 code · 11 blank · 4 comment · 4 complexity · 70a69954c5c751febb40f4388e6b7bce MD5 · raw file

  1. package com.alibaba.fastjson.support.spring;
  2. import com.alibaba.fastjson.JSON;
  3. import com.alibaba.fastjson.parser.Feature;
  4. import com.alibaba.fastjson.serializer.SerializerFeature;
  5. import java.io.ByteArrayOutputStream;
  6. import java.io.IOException;
  7. import java.io.InputStream;
  8. import java.io.OutputStream;
  9. import java.nio.charset.Charset;
  10. import org.springframework.http.HttpInputMessage;
  11. import org.springframework.http.HttpOutputMessage;
  12. import org.springframework.http.MediaType;
  13. import org.springframework.http.converter.AbstractHttpMessageConverter;
  14. import org.springframework.http.converter.HttpMessageNotReadableException;
  15. import org.springframework.http.converter.HttpMessageNotWritableException;
  16. public class FastJsonHttpMessageConverter extends AbstractHttpMessageConverter<Object>
  17. {
  18. public static final Charset UTF8 = Charset.forName("UTF-8");
  19. private Charset charset = UTF8;
  20. private SerializerFeature[] features = new SerializerFeature[0];
  21. public FastJsonHttpMessageConverter()
  22. {
  23. super(new MediaType[] { new MediaType("application", "json", UTF8), new MediaType("application", "*+json", UTF8) });
  24. }
  25. public Charset getCharset()
  26. {
  27. return this.charset;
  28. }
  29. public SerializerFeature[] getFeatures()
  30. {
  31. return this.features;
  32. }
  33. protected Object readInternal(Class<? extends Object> paramClass, HttpInputMessage paramHttpInputMessage)
  34. throws IOException, HttpMessageNotReadableException
  35. {
  36. ByteArrayOutputStream localByteArrayOutputStream = new ByteArrayOutputStream();
  37. paramHttpInputMessage = paramHttpInputMessage.getBody();
  38. byte[] arrayOfByte = new byte[1024];
  39. while (true)
  40. {
  41. int i = paramHttpInputMessage.read(arrayOfByte);
  42. if (i == -1)
  43. {
  44. paramHttpInputMessage = localByteArrayOutputStream.toByteArray();
  45. return JSON.parseObject(paramHttpInputMessage, 0, paramHttpInputMessage.length, this.charset.newDecoder(), paramClass, new Feature[0]);
  46. }
  47. if (i > 0)
  48. localByteArrayOutputStream.write(arrayOfByte, 0, i);
  49. }
  50. }
  51. public void setCharset(Charset paramCharset)
  52. {
  53. this.charset = paramCharset;
  54. }
  55. public void setFeatures(SerializerFeature[] paramArrayOfSerializerFeature)
  56. {
  57. this.features = paramArrayOfSerializerFeature;
  58. }
  59. protected boolean supports(Class<?> paramClass)
  60. {
  61. return true;
  62. }
  63. protected void writeInternal(Object paramObject, HttpOutputMessage paramHttpOutputMessage)
  64. throws IOException, HttpMessageNotWritableException
  65. {
  66. paramHttpOutputMessage.getBody().write(JSON.toJSONString(paramObject, this.features).getBytes(this.charset));
  67. }
  68. }
  69. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  70. * Qualified Name: com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter
  71. * JD-Core Version: 0.6.2
  72. */