Write entire file: Difference between revisions

Line 624:
}</syntaxhighlight>
 
===Using Java NIO11===
 
<syntaxhighlight>
Line 630:
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.PathsPath;
import java.nio.file.StandardOpenOption;
 
Line 639:
String filePath = "output.txt";
Files.write(PathsPath.getof(filePath), contents.getBytes(), StandardOpenOption.CREATE);
}
 
908

edits