TCP/IP を使用して、あるコンピューターから別のコンピューターにファイルを転送しようとしています。以下に示すように、Javaでコードを記述しました。ただし、コードは機能せず、複数の catch ブロックを使用した後、これは「SocketException」が原因であることがわかりました。誰でもこれを解決する方法を教えてもらえますか? これが私のコードです-
TCPクライアント
import java.net.*;
java.io をインポートします。; java.util をインポートします。;
パブリック クラス TCPClient {
public static void main (String args[])
{
try
{
Socket sock = new Socket("localhost", 6839);
InputStream is = null;
FileOutputStream out = null;
boolean doesntexist=false;
String filename = "D:\\"+"Test"+".pdf";
System.out.println("Here!");
File newplaylist = new File(filename);
doesntexist = newplaylist.createNewFile();
if(!doesntexist)
{
newplaylist.delete();
newplaylist.createNewFile();
}
byte[] mybytearray = new byte[1024];
is = sock.getInputStream();
// Create a new file output stream.
out = new FileOutputStream(newplaylist);
int count;
while ((count = is.read(mybytearray)) >= 0) {
out.write(mybytearray, 0, count);
}
out.close();
is.close();
sock.close();
}
catch(SocketException e)
{
System.out.println("Socket exception");
}
catch(ProtocolException e)
{
System.out.println("Protocol exception");
}
catch(IOException ds)
{
;
}
}
}
TCPサーバー
import java.util.*;
import java.io.*;
import java.net.*;
import java.nio.channels.*;
class Fileserver
{
public static void main(String args[]) throws IOException
{
ServerSocket server = new ServerSocket(6839);
File myFile = new File("E:\\file1.pdf");
FileInputStream file = null;
OutputStream os = null;
Socket sock=null;
sock = server.accept();
try
{
byte[] mybytearray = new byte[1024];
file = new FileInputStream(myFile);
os = sock.getOutputStream();
int count;
while ((count = file.read(mybytearray)) >= 0) {
os.write(mybytearray, 0, count);
}
os.flush();
}
catch(IOException e)
{
System.out.println("No file");
}
catch(IllegalBlockingModeException ea)
{
System.out.println("blah!");
}
finally
{
System.out.println("hello");
file.close();
os.close();
sock.close();
System.out.println("Socket closed");
}
}
}