tsfile-viewer-web/src/main/java/org/apache/iotdb/ui/service/TsfileViewerService.java [421:445]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      while (data.hasCurrent()) {
        List<String> col = new ArrayList<>();
        long time = data.currentTime();
        col.add(time + "");
        String[] values = data.currentTsPrimitiveType().getStringValue().split(",");
        for (int i = 0; i < values.length; i++) {
          values[i] = values[i].trim();
          if (i == 0) {
            values[i] = values[i].substring(1);
          } else if (i == values.length - 1) {
            values[i] = values[i].substring(0, values[i].length() - 1);
          }
          col.add(values[i]);
        }
        pageDataVO.getValues().add(col);
        data.next();
      }
    } else {
      while (data.hasCurrent()) {
        List<String> col = new ArrayList<>();
        col.add(data.currentTime() + "");
        Object currValue = data.currentValue();
        col.add(currValue.toString());
        pageDataVO.getValues().add(col);
        data.next();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tsfile-viewer-web/src/main/java/org/apache/iotdb/ui/service/TsfileViewerService.java [462:486]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      while (data.hasCurrent()) {
        List<String> col = new ArrayList<>();
        long time = data.currentTime();
        col.add(time + "");
        String[] values = data.currentTsPrimitiveType().getStringValue().split(",");
        for (int i = 0; i < values.length; i++) {
          values[i] = values[i].trim();
          if (i == 0) {
            values[i] = values[i].substring(1);
          } else if (i == values.length - 1) {
            values[i] = values[i].substring(0, values[i].length() - 1);
          }
          col.add(values[i]);
        }
        pageDataVO.getValues().add(col);
        data.next();
      }
    } else {
      while (data.hasCurrent()) {
        List<String> col = new ArrayList<>();
        col.add(data.currentTime() + "");
        Object currValue = data.currentValue();
        col.add(currValue.toString());
        pageDataVO.getValues().add(col);
        data.next();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



