dubbo-remoting/dubbo-remoting-http12/src/main/java/org/apache/dubbo/remoting/http12/message/DefaultHttpRequest.java [242:250]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String charset() {
        String charset = this.charset;
        if (charset == null) {
            String contentType = contentType();
            charset = HttpUtils.parseCharset(contentType);
            this.charset = charset;
        }
        return charset.isEmpty() ? null : charset;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



dubbo-remoting/dubbo-remoting-http12/src/main/java/org/apache/dubbo/remoting/http12/message/DefaultHttpResponse.java [165:173]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String charset() {
        String charset = this.charset;
        if (charset == null) {
            String contentType = contentType();
            charset = HttpUtils.parseCharset(contentType);
            this.charset = charset;
        }
        return charset.isEmpty() ? null : charset;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



