mirror of
https://github.com/mirror/jdownloader.git
synced 2025-03-03 09:57:30 +00:00
git-svn-id: svn://svn.jdownloader.org/jdownloader/trunk@4014 ebf7c1c2-ba36-0410-9fe8-c592906822b4
This commit is contained in:
parent
d9c404ad38
commit
34c15ac6f7
@ -1,15 +1,37 @@
|
||||
package Parser;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.Vector;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
import myIrcBot.Utilities;
|
||||
|
||||
public class SourceParser {
|
||||
private static String getLocalFile(File file) {
|
||||
if (!file.exists())
|
||||
return "";
|
||||
BufferedReader f;
|
||||
try {
|
||||
f = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8"));
|
||||
|
||||
String line;
|
||||
StringBuffer ret = new StringBuffer();
|
||||
String sep = "\r\n";
|
||||
while ((line = f.readLine()) != null) {
|
||||
ret.append(line + sep);
|
||||
}
|
||||
f.close();
|
||||
return ret.toString();
|
||||
} catch (IOException e) {
|
||||
|
||||
}
|
||||
return "";
|
||||
}
|
||||
private static void parseAdditon(File file, String regexp) {
|
||||
String text = Utilities.getLocalFile(file);
|
||||
String text = getLocalFile(file);
|
||||
text = text.replaceAll("(?is)/\\*.*?\\*/", "");
|
||||
text = text.replaceAll("//.*", "");
|
||||
text = text.replaceAll(".*final .*", ""); // kann man nich verändern
|
||||
|
Loading…
x
Reference in New Issue
Block a user