I am attempting to export a Guava table to CSV. The code below works, but it skips the first column which I want to see in the output as well. Can you suggest anything?
EDIT: obviously using values() and keySet() separately works.
final RowSortedTable<String, String, Double> graph = TreeBasedTable.create();
graph.put("A", "0", 0.0);
graph.put("A", "1", 1.0);
graph.put("B", "0", 0.1);
graph.put("B", "1", 1.1);
final Appendable out = new StringBuilder();
try {
    final CSVPrinter printer = CSVFormat.DEFAULT.print(out);
    printer.printRecords(//
            graph.rowMap().values()//
                    .stream()//
                    .map(x -> x.values())//
                    .collect(Collectors.toList()));
} catch (final IOException e) {
    e.printStackTrace();
}
System.out.println(out);
EDIT: this doesn't work either:
        printer.printRecords(//
                graph.rowMap().entrySet().stream().map(entry -> {
                      List a = Arrays.asList(entry.getKey());
                      a.addAll(entry.getValue().values());
                      return a;
                    }).collect(Collectors.toList())
                );
                You'll want to use entrySet() instead of values() and then map each entry to a list of its key and values:
printer.printRecords(graph.rowMap().entrySet()
        .stream()
        .map(entry -> ImmutableList.builder()
                .add(entry.getKey())
                .addAll(entry.getValue().values())
                .build())
        .collect(Collectors.toList()));
                        If you have more fields you can always switch the Tripple with a Map. This is similar to JSon where each object is described a a map with keys being the attributes and values the values.
class Tripple {
        String value1;
        String value2;
        Double value3;
     Tripple(String value1, String value2, Double value3) {
        super();
        this.value1 = value1;
        this.value2 = value2;
        this.value3 = value3;
    }  
     Map<String,Map<String,Integer>> map;
RowSortedTable<String, String, Double> maprows;
List<Tripple> triples = maprows.rowMap().entrySet().stream()
                                                    .map(t->{final List<Tripple>  tripples = new ArrayList<>();
                                                             t.getValue().entrySet()
                                                                                    .forEach(p->{tripples.add(new Tripple(t.getKey(),p.getKey(),p.getValue()));});
                                                             return tripples;})
                                                    .flatMap(t->t.stream())
                                                    .collect(Collectors.toList());
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With