JAVA RESTful Webservice和XML文件传输

时间:2012-07-05 15:17:46

标签: java web-services rest file-transfer

首先,对不起我的英语。其次,我知道有很多关于我要谈的内容的现有帖子,但据我搜索,我发现没有(真的)与我的“特定”问题相关。所以我们走了。

我目前正在开发JAVA RESTful Web服务。此Web服务的目标是将一些XML文件(更确切地说,一些OVAL定义)发送到连接的客户端。我见过4个'解决方案':

  • 将所有XML文件内容放入String中(如果需要,将此String编码在base64中)并将String发送到客户端
  • 将所有XML文件内容放入Byte []并将Byte []发送到客户端
  • 使用FTP辅助服务器
  • 通过套接字上的流式传输发送/接收文件(InputStream / OutputStream)

目前,我已经决定选择解决方案4。您可以在下面看到我的代码中有关文件传输的一些部分。


服务器端:

@Path("/sendXML")
@Produces(MediaType.TEXT_PLAIN)
@GET
@Path("/sendXML")
@Produces(MediaType.TEXT_PLAIN)
public String getHtml(@Context HttpServletResponse  serv) throws IOException {
    ServletOutputStream o =serv.getOutputStream();
    try {
        FileInputStream fis = new FileInputStream(new File("xml file to send"));
        int c;

        while ((c = fis.read()) != -1) {
           o.write(c);
        }

        fis.close();
        o.close();
    } catch (Exception e) {
        System.err.println("e");
    } 

    return "OK" ;
}

客户方:

try {
        URL u = new URL("http://localhost:8080/ws.example.filetransfer/rest/sendXML");
        HttpURLConnection uc = (HttpURLConnection) u.openConnection();


        InputStream is = uc.getInputStream();

        try {
            FileOutputStream fos = new FileOutputStream(new File("path where the file will be saved"));
            int c;

            while ((c = is.read()) != -1) {
               fos.write(c);
            }


            is.close();
            fos.close();
        } catch (Exception e) {
            System.err.println("FileStreamsTest: " + e);
        } 

    } catch (Exception e) {
        e.printStackTrace();
    }

我正在Eclipse下开发和测试我的程序。一切似乎都没问题,XML文件很好地从服务器发送到客户端,将其保存在磁盘上。当我启动客户端程序(服务器已启动)时,这是一个控制台输出:

<?xml version="1.0"?><hello> Hello Jersey</hello>
<html> <title>Hello Jersey</title><body><h1>Hello Jersey</body></h1></html> 
<?xml version="1.0" encoding="UTF-8"?>
<oval_definitions xsi:schemaLocation="http://oval.mitre.org/XMLSchema/oval-  definitions-5 oval-definitions-schema.xsd http://oval.mitre.org/XMLSchema/oval-definitions-5#hpux hpux-definitions-schema.xsd http://oval.mitre.org/XMLSchema/oval-common-5 oval-common-schema.xsd http://oval.mitre.org/XMLSchema/oval-definitions-5#unix unix-definitions-schema.xsd" xmlns="http://oval.mitre.org/XMLSchema/oval-definitions-5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:oval="http://oval.mitre.org/XMLSchema/oval-common-5" xmlns:oval-def="http://oval.mitre.org/XMLSchema/oval-definitions-5">
<generator>
<oval:product_name>The OVAL Repository</oval:product_name>
<oval:schema_version>5.10.1</oval:schema_version>
<oval:timestamp>2012-06-29T05:09:57.714-04:00</oval:timestamp>
</generator>
[...]

正如您所看到的,当客户端收到XML文件时,除了将此内容写入磁盘(在代码中指定的文件中)之外,它还会将内容写入stdout。在stdout上写是一个小问题,因为内容也写在磁盘上,但是这是正常的,还是一种Eclipse bug,还是我的错误..?

总而言之,以下是我的问题:

  • 根据您的说法,使用JAVA REST Web服务传输XML文件的最佳方法是什么?
  • 您认为流媒体解决方案是一种好方法吗?
  • 我是否已经很好地实现了这个解决方案(我对某些代码有疑问,比如使用@Contex属性)?

感谢大家的关注和答案! 海森89

0 个答案:

没有答案