Illegal character - CTRL-CHAR

后端 未结 6 2240
野性不改
野性不改 2020-12-10 12:03

I am getting following exceptopn from webservices:

com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character ((CTRL-CHAR, code 15))

6条回答
  •  旧巷少年郎
    2020-12-10 12:43

    If you have control characters in your text data then you need to solve that problem at its source.

    The most likely causes are incorrect communication encodings (usually between database and app) or not sanitising user input.

提交回复
热议问题