-1

我正在尝试使用 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");
     }

  }

}

4

1 回答 1

1

您的代码正在丢弃所有有用的诊断信息,这将使找出实际问题几乎是不可能的。(并且完全无视IOException这样的行为近乎犯罪!)

解决此问题的方法如下:

  • 修改程序以在发生意外异常时输出异常消息和堆栈跟踪。
  • 运行程序。
  • 如果/当它们失败时,请检查诊断并确定它们的含义……或将它们添加到问题中,以便我们为您提供帮助。

连接超时通常表示网络级别存在某种问题。例如,您尝试连接的机器已死机(或不存在)、数据包未正确路由或被防火墙丢弃。

但在这种情况下,问题在于您(显然)试图使用"localhost"与另一台机器进行通信。那根本行不通。该"localhost"名称通常会解析为环回子网上的地址;例如127.0.0.1。环回流量永远不会离开发送它的机器......所以你只能"localhost"用来连接到台机器上的东西。

(可能发生的情况是,由于没有任何东西监听到台机器上指定端口的连接,因此打开连接的 TCP 数据包被丢弃。最终,客户端 TCP-IP 堆栈超时连接尝试,Java套接字库抛出您看到的异常。)

解决方案是替换"localhost"为您尝试与之通信的计算机的 DNS 名称或 IP 地址。

于 2013-01-17T03:28:31.857 回答