Apache CXF实战之七:使用Web Service传输文件

首先声明我知道有个协议叫ftp,也知道有种编程叫sock编程,但我就是碰到了server对外只开放80端口,并且还需要提供文件上传和下载功能的应用,那好吧,开始干活。

1. 首先是一个封装了服务器端文件路径,客户端文件路径和要传输的字节数组的MyFile类。

 
  1. packagecom.googlecode.garbagecan.cxfstudy.filetransfer;
  2. publicclassMyFile{
  3. privateStringclientFile;
  4. privateStringserverFile;
  5. privatelongposition;
  6. privatebyte[]bytes;
  7. publicStringgetClientFile(){
  8. returnclientFile;
  9. }
  10. publicvoidsetClientFile(StringclientFile){
  11. this.clientFile=clientFile;
  12. }
  13. publicStringgetServerFile(){
  14. returnserverFile;
  15. }
  16. publicvoidsetServerFile(StringserverFile){
  17. this.serverFile=serverFile;
  18. }
  19. publiclonggetPosition(){
  20. returnposition;
  21. }
  22. publicvoidsetPosition(longposition){
  23. this.position=position;
  24. }
  25. publicbyte[]getBytes(){
  26. returnbytes;
  27. }
  28. publicvoidsetBytes(byte[]bytes){
  29. this.bytes=bytes;
  30. }
  31. }

2. 文件传输的Web Service接口

 
  1. packagecom.googlecode.garbagecan.cxfstudy.filetransfer;
  2. importjavax.jws.WebMethod;
  3. importjavax.jws.WebService;
  4. @WebService
  5. publicinterfaceFileTransferService{
  6. @WebMethod
  7. voiduploadFile(MyFilemyFile)throwsFileTransferException;
  8. @WebMethod
  9. MyFiledownloadFile(MyFilemyFile)throwsFileTransferException;
  10. }

3. 文件传输的Web Service接口实现类,主要是一些流的操作

 
  1. packagecom.googlecode.garbagecan.cxfstudy.filetransfer;
  2. importjava.io.File;
  3. importjava.io.FileInputStream;
  4. importjava.io.IOException;
  5. importjava.io.InputStream;
  6. importjava.io.OutputStream;
  7. importjava.util.Arrays;
  8. importorg.apache.commons.io.FileUtils;
  9. importorg.apache.commons.io.IOUtils;
  10. publicclassFileTransferServiceImplimplementsFileTransferService{
  11. publicvoiduploadFile(MyFilemyFile)throwsFileTransferException{
  12. OutputStreamos=null;
  13. try{
  14. if(myFile.getPosition()!=0){
  15. os=FileUtils.openOutputStream(newFile(myFile.getServerFile()),true);
  16. }else{
  17. os=FileUtils.openOutputStream(newFile(myFile.getServerFile()),false);
  18. }
  19. os.write(myFile.getBytes());
  20. }catch(IOExceptione){
  21. thrownewFileTransferException(e.getMessage(),e);
  22. }finally{
  23. IOUtils.closeQuietly(os);
  24. }
  25. }
  26. publicMyFiledownloadFile(MyFilemyFile)throwsFileTransferException{
  27. InputStreamis=null;
  28. try{
  29. is=newFileInputStream(myFile.getServerFile());
  30. is.skip(myFile.getPosition());
  31. byte[]bytes=newbyte[1024*1024];
  32. intsize=is.read(bytes);
  33. if(size>0){
  34. byte[]fixedBytes=Arrays.copyOfRange(bytes,0,size);
  35. myFile.setBytes(fixedBytes);
  36. }else{
  37. myFile.setBytes(newbyte[0]);
  38. }
  39. }catch(IOExceptione){
  40. thrownewFileTransferException(e.getMessage(),e);
  41. }finally{
  42. IOUtils.closeQuietly(is);
  43. }
  44. returnmyFile;
  45. }
  46. }

4. 一个简单的文件传输异常类

 
  1. packagecom.googlecode.garbagecan.cxfstudy.filetransfer;
  2. publicclassFileTransferExceptionextendsException{
  3. privatestaticfinallongserialVersionUID=1L;
  4. publicFileTransferException(){
  5. super();
  6. }
  7. publicFileTransferException(Stringmessage,Throwablecause){
  8. super(message,cause);
  9. }
  10. publicFileTransferException(Stringmessage){
  11. super(message);
  12. }
  13. publicFileTransferException(Throwablecause){
  14. super(cause);
  15. }
  16. }

5. 下面是Server类用来发布web service

 
  1. packagecom.googlecode.garbagecan.cxfstudy.filetransfer;
  2. importjavax.xml.ws.Endpoint;
  3. publicclassFileTransferServer{
  4. publicstaticvoidmain(String[]args)throwsException{
  5. Endpoint.publish("http://localhost:9000/ws/jaxws/fileTransferService",newFileTransferServiceImpl());
  6. }
  7. }

6. 最后是Client类,用来发送文件上传和下载请求。

 
  1. packagecom.googlecode.garbagecan.cxfstudy.filetransfer;
  2. importjava.io.File;
  3. importjava.io.FileInputStream;
  4. importjava.io.IOException;
  5. importjava.io.InputStream;
  6. importjava.io.OutputStream;
  7. importjava.util.Arrays;
  8. importorg.apache.commons.io.FileUtils;
  9. importorg.apache.commons.io.IOUtils;
  10. importorg.apache.cxf.jaxws.JaxWsProxyFactoryBean;
  11. publicclassFileTransferClient{
  12. privatestaticfinalStringaddress="http://localhost:9000/ws/jaxws/fileTransferService";
  13. privatestaticfinalStringclientFile="/home/fkong/temp/client/test.zip";
  14. privatestaticfinalStringserverFile="/home/fkong/temp/server/test.zip";
  15. publicstaticvoidmain(String[]args)throwsException{
  16. longstart=System.currentTimeMillis();
  17. //uploadFile();
  18. //downloadFile();
  19. longstop=System.currentTimeMillis();
  20. System.out.println("Time:"+(stop-start));
  21. }
  22. privatestaticvoiduploadFile()throwsFileTransferException{
  23. InputStreamis=null;
  24. try{
  25. MyFilemyFile=newMyFile();
  26. is=newFileInputStream(clientFile);
  27. byte[]bytes=newbyte[1024*1024];
  28. while(true){
  29. intsize=is.read(bytes);
  30. if(size<=0){
  31. break;
  32. }
  33. byte[]fixedBytes=Arrays.copyOfRange(bytes,0,size);
  34. myFile.setClientFile(clientFile);
  35. myFile.setServerFile(serverFile);
  36. myFile.setBytes(fixedBytes);
  37. uploadFile(myFile);
  38. myFile.setPosition(myFile.getPosition()+fixedBytes.length);
  39. }
  40. }catch(IOExceptione){
  41. thrownewFileTransferException(e.getMessage(),e);
  42. }finally{
  43. IOUtils.closeQuietly(is);
  44. }
  45. }
  46. privatestaticvoiduploadFile(MyFilemyFile)throwsFileTransferException{
  47. JaxWsProxyFactoryBeanfactoryBean=newJaxWsProxyFactoryBean();
  48. factoryBean.setAddress(address);
  49. factoryBean.setServiceClass(FileTransferService.class);
  50. Objectobj=factoryBean.create();
  51. FileTransferServiceservice=(FileTransferService)obj;
  52. service.uploadFile(myFile);
  53. }
  54. privatestaticvoiddownloadFile()throwsFileTransferException{
  55. MyFilemyFile=newMyFile();
  56. myFile.setServerFile(serverFile);
  57. longposition=0;
  58. while(true){
  59. myFile.setPosition(position);
  60. myFile=downloadFile(myFile);
  61. if(myFile.getBytes().length<=0){
  62. break;
  63. }
  64. OutputStreamos=null;
  65. try{
  66. if(position!=0){
  67. os=FileUtils.openOutputStream(newFile(clientFile),true);
  68. }else{
  69. os=FileUtils.openOutputStream(newFile(clientFile),false);
  70. }
  71. os.write(myFile.getBytes());
  72. }catch(IOExceptione){
  73. thrownewFileTransferException(e.getMessage(),e);
  74. }finally{
  75. IOUtils.closeQuietly(os);
  76. }
  77. position+=myFile.getBytes().length;
  78. }
  79. }
  80. privatestaticMyFiledownloadFile(MyFilemyFile)throwsFileTransferException{
  81. JaxWsProxyFactoryBeanfactoryBean=newJaxWsProxyFactoryBean();
  82. factoryBean.setAddress(address);
  83. factoryBean.setServiceClass(FileTransferService.class);
  84. Objectobj=factoryBean.create();
  85. FileTransferServiceservice=(FileTransferService)obj;
  86. returnservice.downloadFile(myFile);
  87. }
  88. }

首先需要准备一个大一点的文件,然后修改代码中的clientFile和serverFile路径,然后分别打开uploadFile和downloadFile注释,运行程序,检查目标文件查看结果。

这个程序还是比较简单的,但基本生完成了文件上传下载功能,如果需要,也可以对这个程序再做点修改使其支持断点续传。

原文链接:http://blog.csdn.net/kongxx/article/details/7540930

【系列文章】

  1. Apache CXF实战之六:创建安全的Web Service
  2. Apache CXF实战之五:压缩Web Service数据
  3. Apache CXF实战之四:构建RESTful Web Service
  4. Apache CXF实战之三:传输Java对象
  5. Apache CXF实战之二:集成Sping与Web容器
  6. Apache CXF实战之一:Hello World Web Service

你可能感兴趣的:(web Service)