supersocket新的配置属性 "textEncoding"

在 SuperSocket 1.6 之前的版本, 当你通过Session对象发送文本时, 将文本信息转换成能够通过Socket传输的二进制数据的默认编码是UTF8。 你可以通过设置 Session 的 Charset 属性来修改这个编码。
现在在 SuperSocket 1.6 中, 你可以在配置中定义字符编码。
新的配置属性 "textEncoding" 被加入到了服务器配置节点:
<superSocket>
    <servers>
      <server name="TelnetServer"
          textEncoding="UTF-8"
          serverType="YourAppServer, YourAssembly"
          ip="Any" port="2020">
      </server>
    </servers>
</superSocket>
原文地址:https://www.cnblogs.com/fanweisheng/p/11127577.html