Springboot使用FastJson后,POI导出excel乱码

在项目中使用了 fastjson,用作驼峰和下划线的互转,但在引入POI导出excel时,发现导出excel文件不报错,也没抛出异常,但excel打开却乱码,于是各种调试,各种找。。。;最后再把fastjson的配置注释掉发现excel没有乱码了,于是网上查了一下,原来是配置fastjson时重写了HttpMessageConverters,但MediaType没有设置成 MediaType.APPLICATION_JSON_UTF8,代码如下

 @Bean
    public HttpMessageConverters fastJsonConfigure(){
        FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
        FastJsonConfig fastJsonConfig = new FastJsonConfig();
        fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
        //日期格式化
        fastJsonConfig.setDateFormat("yyyy-MM-dd HH:mm:ss");
        fastJsonConfig.setSerializerFeatures(SerializerFeature.WriteMapNullValue);
        converter.setFastJsonConfig(fastJsonConfig);

        //处理中文乱码问题
        List fastMediaTypes = new ArrayList<>();
        fastMediaTypes.add(MediaType.APPLICATION_JSON_UTF8);
        converter.setSupportedMediaTypes(fastMediaTypes);
        return new HttpMessageConverters(converter);
    }

上面代码,直接放在springBoot启动类上即可。

设置后,下载excel,就不会乱码了。

【参考】https://www.cnblogs.com/xql4j/p/6729524.html

你可能感兴趣的:(java,springBoot)