Skip to content
Snippets Groups Projects
Commit 1b3abbd1 authored by ribeaudc's avatar ribeaudc
Browse files

[LMS-169]

change:
- Replace 'getResourceAsStream()' with 'getResource()' as Tomcat caches the class relative input streams.

SVN: 3359
parent 071a7c14
No related branches found
No related tags found
No related merge requests found
...@@ -20,15 +20,16 @@ import java.io.BufferedReader; ...@@ -20,15 +20,16 @@ import java.io.BufferedReader;
import java.io.File; import java.io.File;
import java.io.FileFilter; import java.io.FileFilter;
import java.io.FileInputStream; import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream; import java.io.FileOutputStream;
import java.io.FileReader; import java.io.FileReader;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream; import java.io.OutputStream;
import java.io.PrintWriter; import java.io.PrintWriter;
import java.io.StringWriter; import java.io.StringWriter;
import java.net.URL;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
...@@ -197,20 +198,22 @@ public final class FileUtilities ...@@ -197,20 +198,22 @@ public final class FileUtilities
* Loads a resource to a string. * Loads a resource to a string.
* <p> * <p>
* A non-existent resource will result in a return value of <code>null</code>. * A non-existent resource will result in a return value of <code>null</code>.
* </p>
* *
* @param clazz Class for which <code>getResourceAsStream()</code> will be invoked (must not be <code>null</code>). * @param clazz Class for which <code>getResource()</code> will be invoked (must not be <code>null</code>).
* @param resource Absolute path of the resource (will be the argument of <code>getResourceAsStream()</code>). * @param resource Absolute path of the resource (will be the argument of <code>getResource()</code>).
* @return The content of the resource, or <code>null</code> if the specified resource does not exist. * @return The content of the resource, or <code>null</code> if the specified resource does not exist.
* @throws CheckedExceptionTunnel for wrapping an {@link IOException} * @throws CheckedExceptionTunnel for wrapping an {@link IOException}
*/ */
public static String loadToString(Class<?> clazz, String resource) throws CheckedExceptionTunnel public static String loadToString(final Class<?> clazz, final String resource) throws CheckedExceptionTunnel
{ {
assert clazz != null; assert clazz != null : "Given class can not be null.";
assert resource != null && resource.length() > 0; assert resource != null && resource.length() > 0 : "Given resource can not be null.";
final BufferedReader reader = getBufferedReader(clazz, resource); BufferedReader reader = null;
try try
{ {
reader = getBufferedReader(clazz, resource);
return readString(reader); return readString(reader);
} catch (IOException ex) } catch (IOException ex)
{ {
...@@ -226,19 +229,21 @@ public final class FileUtilities ...@@ -226,19 +229,21 @@ public final class FileUtilities
* <p> * <p>
* A non-existent resource will result in a return value of <code>null</code>. * A non-existent resource will result in a return value of <code>null</code>.
* *
* @param clazz Class for which <code>getResourceAsStream()</code> will be invoked. * @param clazz Class for which <code>getResource()</code> will be invoked.
* @param resource Absolute path of the resource (will be the argument of <code>getResourceAsStream()</code>). * @param resource Absolute path of the resource (will be the argument of <code>getResource()</code>).
* @return The content of the resource line by line. * @return The content of the resource line by line.
* @throws CheckedExceptionTunnel for wrapping an {@link IOException}, e.g. if the file does not exist. * @throws CheckedExceptionTunnel for wrapping an {@link IOException}, e.g. if the file does not exist.
*/ */
public static List<String> loadToStringList(Class<?> clazz, String resource) throws CheckedExceptionTunnel public static List<String> loadToStringList(final Class<?> clazz, final String resource)
throws CheckedExceptionTunnel
{ {
assert clazz != null; assert clazz != null : "Given class can not be null.";
assert resource != null && resource.length() > 0; assert resource != null && resource.length() > 0 : "Given resource can not be null.";
final BufferedReader reader = getBufferedReader(clazz, resource); BufferedReader reader = null;
try try
{ {
reader = getBufferedReader(clazz, resource);
return readStringList(reader); return readStringList(reader);
} catch (IOException ex) } catch (IOException ex)
{ {
...@@ -249,14 +254,15 @@ public final class FileUtilities ...@@ -249,14 +254,15 @@ public final class FileUtilities
} }
} }
private static BufferedReader getBufferedReader(Class<?> clazz, String resource) private final static BufferedReader getBufferedReader(final Class<?> clazz, final String resource)
throws FileNotFoundException
{ {
final InputStream stream = clazz.getResourceAsStream(resource); final URL url = clazz.getResource(resource);
if (stream == null) if (url == null)
{ {
return null; return null;
} }
return new BufferedReader(new InputStreamReader(stream)); return new BufferedReader(new FileReader(new File(url.getFile())));
} }
private static String readString(BufferedReader reader) throws IOException private static String readString(BufferedReader reader) throws IOException
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment