All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.tablesaw.io.html.HtmlTableWriter Maven / Gradle / Ivy

There is a newer version: 0.43.1
Show newest version
package tech.tablesaw.io.html;

import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.List;

import org.apache.commons.lang3.StringUtils;

import com.google.common.annotations.VisibleForTesting;

import tech.tablesaw.api.Table;
import tech.tablesaw.columns.Column;

/**
 * Static utility that writes Tables in HTML format for display
 */
public final class HtmlTableWriter {

    /**
     * Private constructor to prevent instantiation
     */
    private HtmlTableWriter() {
    }

    public static String write(Table table) {
        StringBuilder builder = new StringBuilder();
        builder.append(header(table.columnNames()));
        builder.append("")
                .append('\n');
        for (int row : table.rows()) {
            builder.append(row(row, table));
        }
        builder.append("");
        return builder.toString();
    }

    public static void write(Table table, OutputStream outputStream) {
        try (PrintWriter p = new PrintWriter(outputStream)) {
            p.println(write(table));
        }
    }

    /**
     * Returns a string containing the html output of one table row
     */
    @VisibleForTesting
    static String row(int row, Table table) {
        StringBuilder builder = new StringBuilder()
                .append("");

        for (Column col : table.columns()) {
            builder
                    .append("")
                    .append(String.valueOf(col.getString(row)))
                    .append("");
        }
        builder
                .append("")
                .append('\n');
        return builder.toString();
    }

    @VisibleForTesting
    static String header(List columnNames) {
        StringBuilder builder = new StringBuilder()
                .append("")
                .append('\n')
                .append("");
        for (String name : columnNames) {
            builder
                    .append("")
                    .append(splitCamelCase(splitOnUnderscore(name)))
                    .append("");
        }
        builder
                .append("")
                .append('\n')
                .append("")
                .append('\n');

        return builder.toString();
    }

    // todo move to utils
    private static String splitCamelCase(String s) {
        return StringUtils.join(
                StringUtils.splitByCharacterTypeCamelCase(s),
                ' '
        );
    }

    // todo move to utils
    static String splitOnUnderscore(String s) {
        return StringUtils.join(
                StringUtils.split(s, '_'),
                ' '
        );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy