org.ini4j.InvalidFileFormatException Java Examples
The following examples show how to use
org.ini4j.InvalidFileFormatException.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DescriptorParser.java From xds-ide with Eclipse Public License 1.0 | 4 votes |
private static String getUpdateDescrpitorURI(File updatePropertiesFile) throws InvalidFileFormatException, IOException { final Ini ini = new Ini(updatePropertiesFile); return ini.get(GENERAL_INI_SECTION, UPDATE_DIR_PROPERTY_NAME); }