Get possible conversions
GroupDocs.Conversion allows to get possible conversions for a provided source document by following the below steps:
- Create new instance of Converter class by passing source document path as constructor’s parameter
- Call GetPossibleConversions method of converter object
The following code sample demonstrates how to get possible conversions of the source document:
String sourceFile = "sample.docx";
Converter converter = new Converter(sourceFile);
PossibleConversions conversions = converter.getPossibleConversions();
System.out.print(String.format("%s is of type %s and could be converted to:\n",
Constants.SAMPLE_DOCX, conversions.getSource().getExtension()));
for (Pair<FileType, Boolean> conversion : conversions.getAll()) {
System.out.print(String.format("\t %s as %s conversion.\n", conversion.getKey().getExtension(), conversion.getValue() ? "primary" : "secondary"));
}
More resources
Advanced Usage Topics
To learn more about document viewing features, please refer to the advanced usage section.
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Conversion for .NET examples, plugins, and showcase
- GroupDocs.Conversion for Java examples, plugins, and showcase
- Document Conversion for .NET MVC UI Example
- Document Conversion for .NET App WebForms UI Modern Example
- Document Conversion for Java App Dropwizard UI Modern Example
- Document Conversion for Java Spring UI Example
Free Online Document Converter Apps
Along with full-featured Java library we provide free Apps and free services for document conversion.
In order to see a full potential of GroupDocs.Conversion, you are welcome to convert DOC to PDF, DOC to XLSX, PDF to DOC, PDF to XLSX, PPT to DOC and more with Free Online Document Converter App or get a full advantage of Free Online Document Converter Suite with advanced conversion settings and many more enterprise built-in features.
Please note that more premium features, advanced options and enhanced document management experience is available for signed-in users at conholdate.app for FREE.
If you don’t own an account yet, register it now for free! No credit card is required!