0

我正在使用SSHTools / J2SSH 通过 SSH 连接到服务器。一切正常,唯一的问题是输出包含奇怪的转义序列/字符。我在某处读到,这些是颜色代码,不是编码问题。现在我的问题是:我如何摆脱它们?似乎我需要某种终端仿真,它可以解释或剥离这些代码。
这是输出ls

[0m[01;34msketchbook[0m  sketchbook.tar  sketchbook.tar.tar  [01;32msshsudo[0m  [01;34mtmp[0m  tmp.tar

(注意:我需要调用其他命令,所以ls --color=never不会做这项工作。)

我之前尝试过Jsch库,你可以用((ChannelShell)channel).setPty(false);它来摆脱这些字符,但我没有找到与 SSHTools 类似的东西。

4

1 回答 1

0

好吧,我自己才发现。下载终端组件库。

然后以下将起作用(基于this blogpost):

      IOStreamConnector input = new IOStreamConnector();
      IOStreamConnector error = new IOStreamConnector();
      input.setCloseInput(false);
      error.setCloseOutput(false);
      input.connect(System.in, session.getOutputStream());
      error.connect(session.getStderrInputStream(), System.out);

      InputStream in = session.getInputStream();
      TerminalEmulation emulation = new TerminalEmulation("vt320");
      emulation.setRecordPrintableOnly(true);
      emulation.startRecording(System.out);
      byte[] buf = new byte[1024];
      int r;
      while ((r = in.read(buf)) != -1) {
          emulation.putBytes(buf, 0, r);
      }
于 2014-04-14T14:51:57.267 回答