OAF_文件系列1_实现OAF文件上传和下载MessageFileUpload/MessageDownload(案例)

简介: 20150707 Created By BaoXinjian 一、摘要 1. 文件上传 首先建立用于存放附件的临时视图对象(View Object),包含Blob类型的视图属性(View Attribute),建立页面包含messageFileUpload类型的Item,并创建页面的控制器。

20150707 Created By BaoXinjian

一、摘要


1. 文件上传

首先建立用于存放附件的临时视图对象(View Object),包含Blob类型的视图属性(View Attribute),建立页面包含messageFileUpload类型的Item,并创建页面的控制器。

 

2. 文件下载

这里要实现的功能是当单击附件链接时,能自动打开附件保存对话框.

 

二、文件上传


1. 创建messageFileUpload空间,其类型为BLOB

 

2. 创建CO实现方法

作用1. 数据保存至VO Blob中

作用2. 将VO中Blob数据保存至server上

复制代码
  public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
  {
    super.processFormRequest(pageContext, webBean); EmpManageAMImpl empAM = (EmpManageAMImpl) pageContext.getApplicationModule(webBean); if ("upload".equals(pageContext.getParameter(EVENT_PARAM))) { try { EmployeeFilesVOImpl empfilevo = empAM.getEmployeeFilesVO(); EmployeeFilesVORowImpl empfilerow = (EmployeeFilesVORowImpl) empfilevo.getCurrentRow(); BlobDomain blob = (BlobDomain) empfilerow.getEmployeeFile(); InputStream instream = blob.getBinaryStream(); File directory = new File("/u2/VIS/visappl/gavin/files"); if(!directory.exists()) { directory.mkdirs(); } String filename = empfilerow.getFileId().toString()+".txt"; File file = new File (directory + filename); FileOutputStream outstream = new FileOutputStream(file); int size = blob.getBufferSize(); byte[] buffer = new byte[size]; int length = 0; while ((length = instream.read(buffer)) != -1) { outstream.write(buffer, 0, length); } instream.close(); outstream.flush(); outstream.close(); empAM.getOADBTransaction().commit(); }catch(IOException ex) { empAM.getOADBTransaction().rollback(); ex.printStackTrace(); } } }
复制代码

 

三、文件下载


1. 创建一个MessageDown类型的空间,其会将附件显示在页面之上

 

2. 创建CO方法,将数据中的Blob数据通过或response保存至本地

复制代码
  public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
  {
    super.processFormRequest(pageContext, webBean); EmpManageAMImpl empAM = (EmpManageAMImpl) pageContext.getApplicationModule(webBean); if ("download".equals(pageContext.getParameter(EVENT_PARAM))) { try { EmployeeFilesVOImpl empfilevo = empAM.getEmployeeFilesVO(); EmployeeFilesVORowImpl empfilerow = (EmployeeFilesVORowImpl) empfilevo.getCurrentRow(); BlobDomain blob = (BlobDomain) empfilerow.getEmployeeFile(); InputStream instream = blob.getBinaryStream(); HttpServletResponse response = (HttpServletResponse) pageContext.getRenderingContext().getServletResponse(); response.addHeader("Content-Disposition", "attachment;filename="+ "gavin.txt"); response.setContentType("application/x-msdownload"); int size = blob.getBufferSize(); byte[] buffer = new byte[size]; int length = 0; while ((length = instream.read(buffer)) != -1) { response.getOutputStream().write(buffer,0,length); } instream.close(); response.getOutputStream().flush(); response.getOutputStream().close(); empAM.getOADBTransaction().commit(); }catch(IOException ex) { empAM.getOADBTransaction().rollback(); ex.printStackTrace(); } } }
复制代码

 

四、测试上传下载文件


Test1. 文件上传测试

Step1. 将employee.txt上传至服务器上

Step2. 查看上传后,文本文件会分别保存至数据库和服务器上

Step3.1  上传至服务器上

Step3.2  上传至数据库中

Step4. 上传后显示在页面中

 

Test2. 文件下载测试

Step1. 文件下载

Step2. 文件下载后保存至数据库中

 

Thanks and Regards

ERP技术讨论群: 288307890
技术交流,技术讨论,欢迎加入
Technology Blog Created By Oracle ERP - 鲍新建
相关文章
|
Java
【不用框架】文件上传和下载(四)
文件上传就是把用户的信息保存起来。
127 0
【不用框架】文件上传和下载(四)
|
算法 JavaScript 前端开发
【不用框架】文件上传和下载(三)
文件上传就是把用户的信息保存起来。
157 0
【不用框架】文件上传和下载(三)
|
Java
【不用框架】文件上传和下载(一)
文件上传就是把用户的信息保存起来。
153 0
【不用框架】文件上传和下载(一)
|
Oracle 关系型数据库
OAF_开发系列20_实现OAF打印功能
ddddd   添加一个页面级的button区域:pagebuttonBar,在之下添加button item ,这里主要设置的参数有:采用默认的oaf的打印按钮的id名称: IcxPrintablePageButton,设置属性集为:/oracle/apps/fnd/attributesets...
1193 0
|
Oracle 关系型数据库
OAF_开发系列18_实现OAF页面跳转setForwardURL / forwardImmediately(案例)
20150716 Created By BaoXinjian 一、摘要 setForwardURL()与forwardImmediately() 1. forwardImmediately会停止当前页面的请求,直接跳转到新的页面; 2.
1565 0
|
测试技术
OAF_开发系列04_实现OAF查询4种不同的实现方式的比较和实现(案例)
2014-06-02 Created By BaoXinjian 一、摘要 OAF实现查询功能或需求,一般都会采用以下四种方式 (1). ResultBasedSearch 最简单的实现方式,将结果中某些栏位需要查询的栏位的属性search设定为true即可 (2).
1786 0
OAF_文件系列12_实现OAF导出PDF方式TemplateHelper
ap.paymentrequest.webuiPaymentRequestSignCO   http://wenku.baidu.com/link?url=ujbT5CHkeC1bAtUn9Nsm_FgVB4k4nAWwwlphukyPGKNoPv5cDjRONWAZmf6RejggMg9...
970 0
OAF_文件系列10_实现OAF将数据资料导出Excel到本地JXL(案例)
20150729 Created By BaoXinjian 一、摘要 将页面上的信息通过调用JXL脚本,将资料导出为Excel 引用的一些包方法 1. 获取输出文件流 1.1. HttpServletResponse: 将文件写到客户端所引用的包 1.
1231 0
|
Java API
OAF_文件系列7_实现OAF处理Excel的JXL包介绍(概念)
20150714 Created By BaoXinjian 一、摘要 JAVA EXCEL API是一个操作excel的组件包,可以满足对一般的excel操作的需要 JAVA EXCEL API是一开放源码项目,通过它Java开发人员可以读取Excel文件的内容、创建新的Excel文件、更新已经存在的Excel文件。
1840 0