※ ChatGPTを利用し、要約された質問です(原文:Javaでファイル転送プログラム)
Javaでファイル転送プログラムを作成する方法
このQ&Aのポイント
Javaを用いてファイル転送プログラムを作成しています。
参考URLとプログラムのコードを提供しましたが、うまく転送できません。
サーバ側とクライアント側のプログラムを作成し、受信バッファサイズやファイルの受信方法についても説明しました。どなたか解決方法をご教授ください。
Javaを用いてファイル転送プログラムを作成しています。
http://d.hatena.ne.jp/rintaromasuda/20060327/1143412352
を参考に作成したのですが、うまく転送できません。
プログラムは以下の通り。
◎サーバ側
import java.net.*;
import java.io.*;
public class UMLFileServer {
public static void main(String[] args) throws IOException{
if (args.length != 2)
throw new IllegalArgumentException("An argument should be port and filename");
int servPort = Integer.parseInt(args[0]);
String filename = args[1];
System.out.println("Output file name : " + args[1]);
//Create FileOutputStream
FileOutputStream fout = new FileOutputStream(filename);
//Create ServerSocket
ServerSocket servSock = new ServerSocket(servPort);
int recvMsgSize;
//int bufSize = servSock.getReceiveBufferSize();
int bufSize = 32;
System.out.println("Size of ReceiveBuffer : " + bufSize);
//Socket accepting loop
while(true){
System.out.println("Wait for accepting... ");
Socket clntSock = servSock.accept();
byte[] byteBuffer = new byte[bufSize];
System.out.println("Accepted client at " +
clntSock.getInetAddress().getHostAddress() +
" on port " +
clntSock.getPort());
//Create InputStream
InputStream in = clntSock.getInputStream();
//Read message and print it out
int totalByte = 0;
while((recvMsgSize = in.read(byteBuffer)) != -1){
System.out.println("Message : " + new String(byteBuffer,0,recvMsgSize));
System.out.println("Size : " + recvMsgSize);
//Write to file
totalByte = totalByte + recvMsgSize;
fout.write(byteBuffer,0,recvMsgSize);
}
System.out.println("Recieved file size : " + totalByte);
clntSock.close();
fout.close();
fout = null;
}
}
}
◎クライアント側
import java.net.*;
import java.io.*;
public class UMLFileClient {
public static void main(String[] args) throws IOException{
if (args.length != 3)
throw new IllegalArgumentException("Arguments should be host,port and filepath");
String server = args[0];
int serverPort = Integer.parseInt(args[1]);
String filename = args[2];
byte[] data = new byte[32];
//ソケットの作成
Socket socket = new Socket(server,serverPort);
System.out.println("Connected to server");
//ストリームの作成
FileInputStream fin = new FileInputStream(filename);
OutputStream out = socket.getOutputStream();
//ファイルの内容を読み出し、送信する
System.out.println("Sending file : " + filename);
int totalSize = 0;
int len = 0;
while ((len = fin.read(data)) != -1) {
totalSize = totalSize + len;
System.out.println(new String(data,0,len));
out.write(data, 0, len);
}
fin.close();
fin = null;
System.out.println("size of file : " + totalSize);
socket.close();
}
}
◎実行結果
Output file name : hiroyasu.txt
Size of ReceiveBuffer : 32
Wait for accepting...
Accepted client at 192.168.71.104 on port 36608
Recieved file size : 0
Wait for accepting...
以上です。どなたか解決方法をご教授ください。
お礼
ありがとうございました。 無事解決することができました。