Java: Reading String From A File
Join the DZone community and get the full member experience.
Join For Free// Ref: http://www.exampledepot.com/egs/java.util.regex/Comment.html
try {
File f = new File("pattern.txt");
FileReader rd = new FileReader(f);
char[] buf = new char[(int)f.length()];
rd.read(buf);
patternStr = new String(buf);
matcher = pattern.matcher(inputStr);
matchFound = matcher.matches();
} catch (IOException e) {
}
Java (programming language)
Strings
Data Types
Opinions expressed by DZone contributors are their own.
Comments