33 lines
890 B
Java
33 lines
890 B
Java
package com.android.tests.basicjar2;
|
|
|
|
import java.io.BufferedReader;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.InputStreamReader;
|
|
|
|
public class BasicJar2 {
|
|
|
|
public static String getContent() {
|
|
InputStream input = BasicJar2.class.getResourceAsStream("/com/android/tests/basicjar2/basicJar2.txt");
|
|
if (input == null) {
|
|
return "FAILED TO FIND basicJar2.txt";
|
|
}
|
|
|
|
BufferedReader reader = null;
|
|
try {
|
|
reader = new BufferedReader(new InputStreamReader(input, "UTF-8"));
|
|
|
|
return reader.readLine();
|
|
} catch (IOException e) {
|
|
} finally {
|
|
if (reader != null) {
|
|
try {
|
|
reader.close();
|
|
} catch (IOException e) {
|
|
}
|
|
}
|
|
}
|
|
|
|
return "FAILED TO READ CONTENT";
|
|
}
|
|
} |