文档中心 > API文档

1.10.2. 附件下载

通过监听FileDownEvent事件可以拦截附件下载进行处理。

适用于对附件进行加密和解密等场景。

    @ListenEvent(event = FileDownloadEvent.class)
     public void onFileDownload(FileDownloadEvent evt) throws Exception {
         // 取得下载的文件
         V3XFile file = evt.getFile();
         // doSth
     }