65 lines
1.4 KiB
Java
65 lines
1.4 KiB
Java
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: g4mini.java,v 1.2 1999/12/15 14:54:13 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
import java.io.*;
|
|
import java.net.*;
|
|
|
|
public class g4mini
|
|
{
|
|
public static void main( String[] args )
|
|
{
|
|
try{
|
|
|
|
// port number
|
|
final int DEFALUT_PORT_NO = 40801 ;
|
|
int portNo = DEFALUT_PORT_NO ;
|
|
|
|
// argument checking
|
|
if( args.length != 2 )
|
|
{
|
|
System.out.println( "Usage: java g4mini src_file server_hostname");
|
|
return ;
|
|
}
|
|
String src = args[0];
|
|
String server = args[1];
|
|
|
|
// open connection
|
|
Socket socket = new Socket( server, portNo ) ;
|
|
|
|
// get input stream from file
|
|
BufferedReader br
|
|
= new BufferedReader ( new FileReader ( src ) ) ;
|
|
|
|
// get output stream to socket
|
|
BufferedWriter bw
|
|
= new BufferedWriter ( new OutputStreamWriter ( socket.getOutputStream() ) ) ;
|
|
|
|
// file ==> socket
|
|
String line ;
|
|
while ( (line = br.readLine()) != null )
|
|
{
|
|
bw.write( line );
|
|
bw.newLine() ;
|
|
bw.flush () ;
|
|
}
|
|
|
|
// close streams
|
|
br.close();
|
|
bw.close();
|
|
socket.close() ;
|
|
}
|
|
|
|
catch( Exception e )
|
|
{
|
|
System.out.println( e.toString() );
|
|
}
|
|
} // main
|
|
}
|