MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / load

Method load

vm/JavaAPI/src/java/util/Properties.java:155–160  ·  view source on GitHub ↗

Loads properties from the specified InputStream, assumed to be ISO-8859-1. See " Character Encoding ". @param in the InputStream @throws IOException

(InputStream in)

Source from the content-addressed store, hash-verified

153 * @throws IOException
154 */
155 public synchronized void load(InputStream in) throws IOException {
156 if (in == null) {
157 throw new NullPointerException("in == null");
158 }
159 load(new InputStreamReader(in, "UTF-8"));
160 }
161
162 /**
163 * Loads properties from the specified {@code Reader}.

Callers 15

loadBundlePropertiesMethod · 0.95
loadMethod · 0.95
mainMethod · 0.95
startSourceWatcherMethod · 0.95
loadHotswapPropertiesMethod · 0.95
isSupportedMethod · 0.95
loadSkinFileMethod · 0.95
runMethod · 0.95
getProjectBuildHintsMethod · 0.95
setProjectBuildHintMethod · 0.95

Calls 5

readMethod · 0.95
arraycopyMethod · 0.95
digitMethod · 0.95
substringMethod · 0.95
putMethod · 0.65

Tested by 15

loadMethod · 0.76
detectJdkVersionMethod · 0.76
processFilesTestMethod · 0.76
convertToTemplateTestMethod · 0.76
loadFromInputStreamMethod · 0.76
loadFromReaderMethod · 0.76
loadHandlesCommentsMethod · 0.76