Skip to content

Instantly share code, notes, and snippets.

@dotkebi
Created May 1, 2017 05:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dotkebi/3316d047cc4dc9e6e350be9953d81049 to your computer and use it in GitHub Desktop.
Save dotkebi/3316d047cc4dc9e6e350be9953d81049 to your computer and use it in GitHub Desktop.
CSVWritable interface
/**
* @author by dotkebi@gmail.com 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