This article shows that how to perform the operations on search results....getTermSequencesOccu ()[ k ]); } } } } More resources GitHub examples You may easily...
This article shows how to delete Image electronic signatures different ways with GroupDocs.Signature API.... getHeight ()); } More resources GitHub Examples You may easily...
This article explains how to add various types of Form Field signatures on document page with options on component positioning, alignment and other visual options with GroupDocs.Signature... More resources GitHub Examples You may easily...
Learn this article and check how to convert Microsoft Word DOCX, DOC, RTF documents to other formats with GroupDocs.Conversion for Java....associated resources in a single file. These resources include anything...
To extract text from EPUB e-books getText and getText(pageIndex) methods is used. These methods allow to extract text from the entire document or a text from the selected page. Raw mode is not supported for EPUB.... readToEnd ()); } } More resources GitHub examples You may easily...
The GroupDocs Metadata API provides the feature to read basic metadata in CAD files. The supported CAD formats are:
DWG DXF Reading CAD metadata To access metadata in a CAD drawing, the GroupDocs.Metadata API provides the CadRootPackage.getCadPackage method.
The following code snippet reads metadata associated with a CAD file.
advanced_usage.managing_metadata_for_specific_formats.cad.CadReadNativeMetadataProperties
try (Metadata metadata = new Metadata(Constants.InputDxf)) { CadRootPackage root = metadata.getRootPackageGeneric(); System.out.println(root.getCadPackage().getAcadVersion()); System.out.println(root.getCadPackage().getAuthor()); System.out.println(root.getCadPackage().getComments()); System.out.println(root.getCadPackage().getCreatedDateTime()); System.out.println(root.getCadPackage().getHyperlinkBase()); System.out.println(root.getCadPackage().getKeywords()); System.out.println(root.getCadPackage().getLastSavedBy()); System.out.println(root.getCadPackage().getTitle()); // .... OutputDxf ); } More resources GitHub examples You may easily...
This article shows how to handle search queries if they contain special characters and separator characters.... Search ( query ); More resources GitHub examples You may easily...
This article gives the knowledge of the API methods which can be used to perform operations about Synonym dictionary using Java....( query , options ); More resources GitHub examples You may easily...