GroupDocs.Metadata Cloud SDK for Java 通过快速与 GroupDocs.Metadata Cloud REST API 集成,使开发人员可以更轻松地将文档元数据操作功能整合到任何基于 Java 的应用程序中。
元数据提取 API 灵活且功能丰富,允许用户查看、添加、更新、搜索、检索和删除各种文档和图像文件格式的元数据属性,例如 Microsoft Office(Word、Excel、PowerPoint、Outlook、Visio、OneNote和 Project)、PDF、元文件、Photoshop 和 AutoCAD、音频和视频文件类型。 GroupDocs.Watermark Cloud 是一个 REST API,可用于您选择的任何语言或平台。它通过管理 API 请求和响应让您只专注于编写项目所需的特定源代码,从而为您节省宝贵的开发成本和时间。
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
String MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
String MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
Configuration configuration = new Configuration(MyAppSid, MyAppKey);
MetadataApi apiInstance = new MetadataApi(configuration);
RemoveOptions options = new RemoveOptions();
SearchCriteria searchCriteria = new SearchCriteria();
NameOptions nameOptions = new NameOptions();
nameOptions.setValue("Application");
searchCriteria.setNameOptions(nameOptions);
options.setSearchCriteria(searchCriteria);
FileInfo fileInfo = new FileInfo();
fileInfo.setFilePath("documents/input.docx");
options.setFileInfo(fileInfo);
RemoveRequest request = new RemoveRequest(options);
RemoveResult response = apiInstance.remove(request);