Herhangi bir dil veya platformda 60’tan fazla belge, resim ve multimedya dosya formatındaki meta veri özelliklerini yönetmek için meta veri işleme REST API’si.
Ücretsiz Denemeye BaşlayınGroupDocs.Metadata Cloud SDK for Java, geliştiricilerin belge meta verisi işleme özelliklerini herhangi bir Java tabanlı uygulamaya dahil etmesini, GroupDocs.Metadata Cloud REST API ile hızlı bir şekilde entegre ederek kolaylaştırır.
Meta veri çıkarma API’si esnek ve özellik açısından zengindir ve kullanıcıların Microsoft Office (Word, Excel, PowerPoint, Outlook, Visio, OneNote ve Project), PDF, meta dosyaları, Photoshop ve AutoCAD, ses ve video dosya türleri gibi çeşitli belge ve görüntü dosyası biçimlerinden meta veri özelliklerini görüntülemesine, eklemesine, güncellemesine, aramasına, almasına ve kaldırmasına olanak tanır. GroupDocs.Watermark Cloud, seçtiğiniz herhangi bir dil veya platformla kullanılabilen bir REST API’sidir. Projenizde ihtiyaç duyulan belirli kaynak kodunu yazmaya odaklanmanızı sağlamak için API isteklerini ve yanıtlarını yöneterek değerli geliştirme maliyetinden ve zamandan tasarruf etmenizi sağlar.
//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);