메타데이터 조작 REST API는 모든 언어 또는 플랫폼의 60개 이상의 문서, 이미지 및 멀티미디어 파일 형식에서 메타데이터 속성을 관리합니다.
무료 평가판 시작Java용 GroupDocs.Metadata Cloud SDK를 사용하면 개발자는 GroupDocs.Metadata Cloud REST API와 신속하게 통합하여 Java 기반 애플리케이션 내에 문서 메타데이터 조작 기능을 더 쉽게 통합할 수 있습니다.
메타데이터 추출 API는 유연하고 기능이 풍부하여 사용자가 Microsoft Office(Word, Excel, PowerPoint, Outlook, Visio, OneNote)와 같은 다양한 문서 및 이미지 파일 형식에서 메타데이터 속성을 보고, 추가하고, 업데이트하고, 검색하고, 검색하고 제거할 수 있습니다. 및 프로젝트), 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);