简体   繁体   中英

Guava table to CSV

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 aa 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());
graph.rowMap().values()

只返回表的值,而不返回您在CSV中看不到的键(第一列)。

You're only mapping to the values, you're skipping the keys (and they are the first column). You'll probably want to work with

graph.rowMap().entrySet().stream().map(entry -> {
  List a = Arrays.asList(entry.getKey());
  a.addAll(entry.getValue().values());
  return a;
}).collect(Collectors.toList());

Check the documentation for further info

https://google.github.io/guava/releases/17.0/api/docs/com/google/common/collect/RowSortedTable.html

http://docs.oracle.com/javase/7/docs/api/java/util/SortedMap.html?is-external=true

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM