Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save groupdocs-com-kb/b07a9dcbbdb0674a52e8b3b4467238ad to your computer and use it in GitHub Desktop.
Save groupdocs-com-kb/b07a9dcbbdb0674a52e8b3b4467238ad to your computer and use it in GitHub Desktop.
How to Convert RTF to ODT using Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-rtf-to-odt-using-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.ConvertOptions;
public class ConvertRTFtoODTusingJava {
public static void main(String[] args) {
// Set License to avoid the limitations of Conversion library
License license = new License();
license.setLicense("GroupDocs.Conversion.lic");
// Import RTF document
Converter converter = new Converter("input.rtf");
// Get conversion option for final output document
ConvertOptions convertoptions = converter.getPossibleConversions("odt")
.getSource().getConvertOptions();
// Save the ODT to disk
converter.convert("result.odt", convertoptions);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment