本文整理匯總了Java中net.sf.freecol.common.io.FreeColXMLReader.seek方法的典型用法代碼示例。如果您正苦於以下問題:Java FreeColXMLReader.seek方法的具體用法?Java FreeColXMLReader.seek怎麽用?Java FreeColXMLReader.seek使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類net.sf.freecol.common.io.FreeColXMLReader
的用法示例。
在下文中一共展示了FreeColXMLReader.seek方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: findOption
import net.sf.freecol.common.io.FreeColXMLReader; //導入方法依賴的package包/類
/**
* Read a option file until an option identifier is found.
*
* @param file The {@code File} to read.
* @param optionId The option identifier to look for.
* @return A {@code FreeColXMLReader} positions such that the
* required identifier current, or null on error or if not found.
*/
public static FreeColXMLReader findOption(File file, String optionId) {
if (file.canRead() && optionId != null) {
try {
FreeColXMLReader xr = new FreeColXMLReader(file);
try {
return xr.seek(optionId);
} catch (Exception ex) {
logger.log(Level.WARNING, "Failure finding option: "
+ optionId, ex);
}
xr.close();
} catch (FileNotFoundException|XMLStreamException xse) {
logger.log(Level.WARNING, "IO error with " + file, xse);
}
}
return null;
}