public static String getSfr() {
String filePath = System.getProperty('user.dir');
filePath += '\\WebContent\\fielList.text';
String sfr = null;
try {
BufferedReader reader = new BufferedReader(new FileReader(filePath));
try {
String temp;
while ((temp = reader.readLine()) != null) {
System.out.println(temp);
}
} catch (IOException e) {
e.printStackTrace();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
return sfr;
}
String filePath = System.getProperty('user.dir');
filePath += '\\WebContent\\fielList.text';
String sfr = null;
try {
BufferedReader reader = new BufferedReader(new FileReader(filePath));
try {
String temp;
while ((temp = reader.readLine()) != null) {
System.out.println(temp);
}
} catch (IOException e) {
e.printStackTrace();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
return sfr;
}
