@future(callout=true)
public static void processCaseLinks(String caseId) {// 提取描述中的链接Case caseRecord = [SELECT Id,Description FROM Case WHERE Id=:caseId];List<String> links = extractLinks(caseRecord.Description);List<Attachment> attachmentsToInsert = new List<Attachment>();for (String link : links) {try {// 下载文件并保存为附件HttpRequest req = new HttpRequest();req.setEndpoint(link);req.setMethod('GET');Http http = new Http();HttpResponse res = http.send(req);if (res.getStatusCode() == 200) {// 创建附件Attachment attachment = new Attachment();attachment.ParentId = caseRecord.Id;attachment.Name = getFileNameFromUrl(link);attachment.Body = res.getBodyAsBlob();attachment.ContentType = res.getHeader('Content-Type');attachmentsToInsert.add(attachment);}} catch (Exception e) {System.debug('Error processing link: ' + link + ' Error: ' + e.getMessage());}}if (!attachmentsToInsert.isEmpty()) {insert attachmentsToInsert;}
}
salesforce 批量下载文件为 attachment 时需要最后保存
2026/3/7 14:50:00
来源:https://blog.csdn.net/lycwhu/article/details/140185256
浏览:
次
关键词:salesforce 批量下载文件为 attachment 时需要最后保存
版权声明:
本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。
我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com
