All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jcifs_1.3.3.examples.TransactNamedPipe Maven / Gradle / Ivy

Go to download

JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java

There is a newer version: 1.3.14-kohsuke-1
Show newest version
import jcifs.smb.SmbNamedPipe;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class TransactNamedPipe {

    public static void main( String[] argv ) throws Exception {

        if( argv.length < 2 ) {
            throw new IllegalArgumentException(
                        "args:   " );
        }

        byte[] b = new byte[65535];
        FileInputStream fin = new FileInputStream( argv[1] );
        FileOutputStream fos = new FileOutputStream( argv[2] );

        SmbNamedPipe pipe = new SmbNamedPipe( argv[0],
                SmbNamedPipe.PIPE_TYPE_RDWR | SmbNamedPipe.PIPE_TYPE_TRANSACT );
        OutputStream out = pipe.getNamedPipeOutputStream();
        InputStream in = pipe.getNamedPipeInputStream();

        int n = fin.read( b );
        System.out.println( "writing " + n + " bytes" );
        out.write( b, 0, n );
        n = in.read(b);
        System.out.println( "read " + n + " bytes" );
        fos.write(b, 0, n );

        fin.close();
        fos.close();
        out.close();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy