我有这个标签
<META HTTP-EQUIV="Expires" CONTENT="Thu, 23 Aug 2012 09:30:00 GMT">
文件中。我必须在文件中找到这个标签,并从中提取内容部分,并与当前日期和时间相匹配。如果文件中的日期和时间早于当前时间,则设置一个标志。有人能帮我做这件事吗?我是新手?感谢
- 内容文件看起来像一个HTML文件。因此,使用像JSoup这样的库来检索META标记的CONTENT属性的值
- 然后使用
SimpleDateFormat
将字符串转换为Calendar
/Date
对象 - 然后使用
after()
/before()
API进行比较
这可能有助于您入门:
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.Scanner;
public class FindStringInFileTest {
public static void main(String[] args) {
File f = new File("c:/test.txt");
String res = find(f);
if (res != null) {
System.out.println("Found Meta Http-Equiv tag");
System.out.println(res);//print META HTTP-EQUIV line
//check the line for whatver dates etc here
} else {
System.out.println("Couldnt find Meta Http-Equiv tag");
}
}
public static String find(File f) {
String result = "";
Scanner in = null;
try {
in = new Scanner(new FileReader(f));
while (in.hasNextLine()) {
String tmp = in.nextLine();
if (containsMetaHttpEquiv(tmp)) {
result = tmp;//assign line which has META HTTP-EQUIV tag
break;//so we dont check more
} else {
result = null;
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
in.close();
} catch (Exception e) {
e.printStackTrace();
}
}
return result;
}
public static boolean containsMetaHttpEquiv(String str) {
if (str.contains("<META HTTP-EQUIV="Expires" CONTENT=")) {
return true;
}
return false;
}
}
它将读取文本文件并检查META HTTP-EQUIV
标记,如果找不到META HTTP-EQUIV
标记,则返回包含该标记的行/字符串或null
。然后使用substring()
和indexOf()
方法提取日期,然后将其解析为SimpleDateFormat
,然后比较这两个日期,并将相应的标志写入文件。
编辑:
以下是从HTTP-EQUIV META标签中提取内容所需的方法:
public static String getContentOfMetaTag(String tag) {
String search = "CONTENT=";
return tag.substring(tag.indexOf("CONTENT=") + search.length() + 1, tag.indexOf('>') - 1);
}
您将使用从find(new File)
返回的String
调用此方法(在调用getContentOfMetaTag(String tag)
之前确保其不为null)