如何通过套接字InputStream发送XML数据

时间:2009-09-15 15:58:22

标签: java xml sockets stream

我正在尝试使用基于XML的协议在Java中编写客户端 - 服务器应用程序。 但我有一个很大的问题!

请参阅客户端代码的这一部分:

InputStream incoming = skt.getInputStream(); //I get Stream from Socket.
OutputStream out = skt.getOutputStream();

[...]

XMLSerializer serializer = new XMLSerializer();
//This create an XML document.
tosend = WUTPClientWriter.createMessage100(projectid, cpuclock, cpunumber);
serializer.setOutputByteStream(out);
serializer.serialize(tosend);

此时服务器陷入僵局。它等待EOF但我无法发送它,因为如果我使用

out.close();

skt.shutdownOutput();

我关闭了Socket,我必须保持这个连接。

我无法发送'\ 0'因为我在服务器中收到Parse Error。

我该怎么办?我可以在不关闭套接字的情况下“关闭”输出流吗?

分辨 我用高级Stream手势创建了新类XMLStreamOutput和XMLStreamInput。

2 个答案:

答案 0 :(得分:4)

我已经解决了这四个课程:

1)

public class XMLOutputStream extends  ByteArrayOutputStream {

 private DataOutputStream outchannel;

 public XMLOutputStream(OutputStream outchannel) {
     super();
     this.outchannel = new DataOutputStream(outchannel);
 }

 public void send() throws IOException {
     byte[] data = toByteArray();
     outchannel.writeInt(data.length);
     outchannel.write(data);
     reset();
 }
}

2)

public class XMLSender {

 public static void send(Document tosend, OutputStream channel) throws   TransformerConfigurationException, IOException {
     XMLOutputStream out = new XMLOutputStream(channel);

     StreamResult sr = new StreamResult(out);
     DOMSource ds = new DOMSource(tosend);
     Transformer tf = TransformerFactory.newInstance().newTransformer();

     try {
         tf.transform(ds, sr);
     } catch (TransformerException ex) {
         Logger.getLogger(XMLSender.class.getName()).log(Level.SEVERE, null, ex);
     }

     out.send();
 }
}

3)

public class XMLInputStream extends ByteArrayInputStream {

 private DataInputStream inchannel;

 public XMLInputStream(InputStream inchannel) {
     super(new byte[2]); 
     this.inchannel = new DataInputStream(inchannel);
 }

 public void recive() throws IOException {
     int i = inchannel.readInt(); 
     byte[] data = new byte[i];
     inchannel.read(data, 0, i); 
     this.buf = data; 
     this.count = i;
     this.mark = 0;
     this.pos = 0;
 }

}

4)

public class XMLReceiver {

 public static Document receive(InputStream channel) throws ParserConfigurationException, TransformerConfigurationException, IOException, SAXException {

     DocumentBuilderFactory docBuilderFact = DocumentBuilderFactory.newInstance();
     DocumentBuilder docBuilder = docBuilderFact.newDocumentBuilder();
     Document request = null;


     XMLInputStream xmlin = new XMLInputStream(channel);

     xmlin.recive();

     request = docBuilder.parse(xmlin);

     return request;
 }
}

答案 1 :(得分:1)

您不想关闭套接字的OutputStream,因为套接字只有一个OutputStream。

看起来你只需要在写入后刷新你的OutputStream。

out.flush();

编辑:感谢额外的信息。如果你正在读这样的插座,接收器需要知道你什么时候写完。如果你关闭套接字,InputStream只知道你写完了。

但是既然你已经声明你不能关闭套接字,你需要另一种方式告诉接收方你已经完成了。您需要使用特殊类型的流来了解正在发送的数据,或者您需要建立一个用于写入/读取适当数据量的合同。

将数据作为Object发送可能最简单(使用ObjectOutputStream / ObjectInputStream - 可能您甚至不需要转换为XML)。

如果您不希望与对象流关联的开销,那么简单的解决方案是计算发送数据的长度,并在发送实际数据之前发送该数字。在这种情况下,您可以使用DataOutputStream / DataInputStream。发送要读取的字节数,然后是数据。在接收端,读取数字,然后将给定的字节数读入临时变量并将其提供给DocumentBuilder.parse(InputStream)。

在发送端,你会这样做:

DataOutputStream out = new DataOutputStream(s.getOutputStream());
ByteArrayOutputStream baos = new ByteArrayOutputStream();

XMLSerializer serializer = new XMLSerializer();
serializer.setOutputByteStream(baos);
tosend = WUTPClientWriter.createMessage100(projectid, cpuclock, cpunumber);
serializer.serialize(tosend);

out.writeInt(baos.size());
out.write(baos.toByteArray());

out.flush();

然后在接收端,您执行以下操作:

DataInputStream in = new DataInputStream(s.getInputStream());

int len = in.readInt();
byte[] xml = new byte[len];
in.read(xml, 0, len);

Document doc = builder.parse(new ByteArrayInputStream(xml));