KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > CreateFile


1 import jcifs.smb.SmbFileOutputStream;
2
3 public class CreateFile {
4
5     public static void main( String JavaDoc argv[] ) throws Exception JavaDoc {
6
7         SmbFileOutputStream out = new SmbFileOutputStream( argv[0], false );
8         out.close();
9     }
10 }
11
12
Popular Tags