The getSupportedFileTypes method of the FileType class is used to obtain a list of supported File types.
An example of obtaining a list of supported File types is presented below.
Iterable<FileType> supportedFileTypes = FileType.getSupportedFileTypes(); Iterator iterator = supportedFileTypes.iterator(); while (iterator.hasNext()) { FileType FileType = (FileType)iterator.next(); System.out.println(FileType.getExtension() + " - " + FileType.getDescription()); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This page contains release notes for GroupDocs.Assembly for .NET 17.1.0 Major Features Extended abilities of working with tables of external documents as data sources for all supported File formats.
Full List of Issues Covering all Changes in this Release Key Summary Category ASSEMBLYNET-26 Add ability to load multiple DocumentTable objects from a single File as a single operation Feature ASSEMBLYNET-27 Add ability to define relations between DocumentTable instances loaded from a single document Feature ASSEMBLYNET-28 Add ability to change automatically detected types of DocumentTable columns Feature ASSEMBLYNET-29 Add ability to use template syntax for related DataTable objects regardless of relation direction Enhancement Public API and Backward Incompatible Changes This section lists public API changes that were introduced in GroupDocs....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This topic lists File formats supported by GroupDocs.Watermark for Python....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This example demonstrates how to load a File of some particular format.
advanced_usage.loading_Files.LoadingFileOfSpecificFormat
JavaScript try { var loadOptions = new LoadOptions(FileFormat.Spreadsheet); const metadata = new groupdocs.metadata.Metadata("input.xls", loadOptions); var root = metadata.getRootPackageGeneric(); } More resources Advanced usage topics To learn more about library features and get familiar how to manage metadata and more, please refer to theadvanced usage section.
GitHub examples You may easily run the code above and see the feature in action in our GitHub examples:...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article shows how to save a File to the specified stream in Java...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article shows how to save a File to the specified stream in Java...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This article shows how to save the modified content to the underlying source in Java....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
This example demonstrates how to load a File of some particular format.
advanced_usage.loading_Files.LoadingFileOfSpecificFormat
// Explicitly specifying the format of a File to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (Metadata metadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit metadata System....Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...
It supports DOCX, DOCM, DOC, DOT, DOTM, XLS, XLSX, PDF, PPT, JPG, PNG, HTML, EML and many more...Pricing Information Free Trials Temporary License Policies My Orders...app About About Us Contact Customers Legal Security Events Acquisition...