java.net.SocketException:软件导致连接中止:套接字写入错误

时间:2010-05-18 22:15:29

标签: java networking java-me

我正在尝试将图像从Java桌面应用程序发送到J2ME应用程序。问题是我得到了这个例外:

java.net.SocketException: Software caused connection abort: socket write error

我在网上四处看看,虽然这个问题并不罕见,但我无法找到具体的解决方案。我在传输之前将图像转换为字节数组。这些是分别在桌面应用程序和J2ME上找到的方法

    public void send(String ID, byte[] serverMessage) throws Exception
    {            
        //Get the IP and Port of the person to which the message is to be sent.
        String[] connectionDetails = this.userDetails.get(ID).split(",");
        Socket sock = new Socket(InetAddress.getByName(connectionDetails[0]), Integer.parseInt(connectionDetails[1]));
        OutputStream os = sock.getOutputStream();
        for (int i = 0; i < serverMessage.length; i++)
        {
            os.write((int) serverMessage[i]);
        }
        os.flush();
        os.close();
        sock.close();
    }

    private void read(final StreamConnection slaveSock)
    {
        Runnable runnable = new Runnable()
        {
            public void run()
            {
                try
                {
                    DataInputStream dataInputStream = slaveSock.openDataInputStream();
                    int inputChar;
                    StringBuffer results = new StringBuffer();
                    while ( (inputChar = dataInputStream.read()) != -1)
                    {
                        results.append((char) inputChar);
                    }
                    dataInputStream.close();
                    slaveSock.close();
                    parseMessage(results.toString());
                    results = null;
                }

                catch(Exception e)
                {
                    e.printStackTrace();
                    Alert alertMsg = new Alert("Error", "An error has occured while reading a message from the server:\n" + e.getMessage(), null, AlertType.ERROR);
                    alertMsg.setTimeout(Alert.FOREVER);
                    myDisplay.setCurrent(alertMsg, resultScreen);
                }
            }
        };
        new Thread(runnable).start();
    }   

我正在通过局域网发送消息,当我发送短信而不是图像时,我没有任何问题。此外,我使用wireshark,似乎桌面应用程序只发送部分消息。任何帮助将受到高度赞赏。此外,一切都适用于J2ME模拟器。

1 个答案:

答案 0 :(得分:5)

请参阅Official reasons for "Software caused connection abort: socket write error"

的答案

修改

我认为一般来说还有更多可以说的内容,并且您的代码似乎没有任何异常会导致连接中止。但是我会注意到:

  • 不需要将字节转换为write调用的整数。它会自动升级。
  • 使用write(byte[])代替write(int)会更好(更简单,在网络流量方面更有效)。
  • 接收方假设每个字节代表一个完整的字符。这可能是不正确的,这取决于发送方如何形成要传输的字节,
  • 最好先发送一个字节数,以便接收方能够在发送方发送整个字节数组之前判断是否出现了问题。