コード例 #1
0
ファイル: Docs.java プロジェクト: ramtej/zest-java
 public void filter() throws IOException {
   // START SNIPPET: filter
   File source = new File("source.txt");
   File destination = new File("destination.txt");
   Inputs.text(source).transferTo(Outputs.text(destination));
   // END SNIPPET: filter
 }