示例#1
0
    @Override
    public void write(Buffer buffer) throws IOException {
      byte[] data = buffer.getBuffer();
      int len = buffer.getLength();
      int i = 0;

      while (i < len && pos < buf.length) {
        if (data[i] == '\r' || data[i] == '\n') {
          if (pos > 0) {
            try {
              writer.write(new MlsxEntry(new String(buf, 0, pos, StandardCharsets.UTF_8)));
            } catch (FTPException ex) {
              throw new IOException();
            }
          }
          pos = 0;
          while (i < len && data[i] < ' ') ++i;
        } else {
          buf[pos++] = data[i++];
        }
      }
    }
示例#2
0
 @Override
 public void close() throws IOException {
   writer.close();
 }