XML Encoding = ‘GBK‘ after STRANS,中文乱码

最近帮同事处理了一个中信银行银企直连接口的一个问题,同事反馈,使用STRANS转换XML后,encoding始终是'utf-16',就算指定了GBK也不行。尝试了很多办法始终不行,发到银行的数据中,中文始终是乱码。

Debug使用HTML视图看报文时也可以看到中文是乱码。

解决方案:

使用cl_sxml_string_writer=>create创建一个GBK编码的对象 ,用来做为STRANS的结果,最重要的是直接发转了编码后的XSTRING过去,不要 转STRING。因为我们的程序是UNICODE的,只要转成STRING,中文就会变成乱码。

返回的结果也一样,看下XSTRING,可以正常显示,如果直接转成STRING就也会变乱码。

主要代码:

ABAP 复制代码
DATA: lv_url     TYPE string.


DATA: lo_xml TYPE REF TO cl_sxml_string_writer.
DATA: x_xml TYPE xstring.
DATA: jsonstr TYPE  string.
DATA:  xmlstr TYPE string.


lo_xml = cl_sxml_string_writer=>create(  encoding = 'GBK'
  no_empty_elements = 'X'  ).

TRY .
    CALL TRANSFORMATION zqbtest_sample31
          SOURCE header =  header[]
               item = item[]
    RESULT XML lo_xml.
  CATCH cx_st_error INTO lo_oref .
    lv_msg  = lo_oref->get_text( ) .
    WRITE: / 'Error message:',lv_msg.
ENDTRY.

x_xml = lo_xml->get_output( ).



lv_url = 'http://192.168..:'.

cl_http_client=>create_by_url(
EXPORTING
  url                = lv_url
IMPORTING
client               = DATA(lo_http_client)
EXCEPTIONS
  argument_not_found = 1
  plugin_not_active  = 2
  internal_error     = 3
  OTHERS             = 4 ).

lo_http_client->propertytype_logon_popup = lo_http_client->co_disabled.


CALL METHOD lo_http_client->request->set_content_type
  EXPORTING
    content_type = 'text/xml; charset=GBK'.
CALL METHOD lo_http_client->request->set_method( 'POST' ).

CALL METHOD lo_http_client->request->set_data
  EXPORTING
    data = x_xml.

lo_http_client->send(
EXCEPTIONS
  http_communication_failure = 1
  http_invalid_state         = 2 ).

IF sy-subrc <> 0.
  "操作失败,获取失败原因
  lo_http_client->get_last_error( IMPORTING message = DATA(lv_msg1) ).
  EXIT.
ENDIF.


lo_http_client->receive(
EXCEPTIONS
  http_communication_failure = 1
  http_invalid_state         = 2
  http_processing_failed     = 3 ).
IF sy-subrc <> 0 .
  "操作失败,获取失败原因
  lo_http_client->get_last_error( IMPORTING message = lv_msg ).
  EXIT.
ENDIF.


DATA(response) = lo_http_client->response->get_data( ).
*  ev_response = response.

CALL METHOD lo_http_client->close.
相关推荐
乌夷3 天前
在pom.xml中通过repositories在Maven构建过程中访问setting.xml之外的仓库
xml·java·maven
振宇i3 天前
Mybatis xml动态SQL 判断失效问题
xml·sql·mybatis
程序员老王wd6 天前
java xml 文本解析
xml·java
小百菜7 天前
dom4j解析含有命名空间的XML
xml·dom4j
黎明晓月7 天前
MyBatis XML一个方法执行插入或更新操做(PostgreSQL)
xml·postgresql·mybatis
GoKu~7 天前
项目配置文件选择(Json,xml,Yaml, INI)
xml·json
枫叶落雨2227 天前
mybatis-plus: mapper-locations: “classpath*:/mapper/**/*.xml“配置!!!解释
xml·java·mybatis
double丶flower7 天前
mybatis在mapper.xml中怎么处理大于、小于、不等于号
xml·java·mybatis
一只爱打拳的程序猿7 天前
pom.xml和spring-config.xml
xml·java·spring
tonysh_zds7 天前
freemarker 读取template.xml ,通过response 输出文件,解决中文乱码问题
xml·java·开发语言