Skip to content

Instantly share code, notes, and snippets.

@dotkebi
Created May 1, 2017 05:49
Show Gist options
  • Select an option

  • Save dotkebi/3316d047cc4dc9e6e350be9953d81049 to your computer and use it in GitHub Desktop.

Select an option

Save dotkebi/3316d047cc4dc9e6e350be9953d81049 to your computer and use it in GitHub Desktop.
CSVWritable interface
/**
* @author by [email protected] on 2017-5-1.
*/
public interface CSVWritable {
void write(OutputStream outputStream, List<String[]> datas);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment