2009-09-28 82 views
-2

您好一直在做一個項目,其中需要各種文件類型(html,xml等)的元數據。有沒有現有的API來做到這一點。有關上述觀點和建議值得歡迎。 在此先感謝。如何使用java從html文件中提取元數據

+1

你能給你的意思是通過元數據什麼的例子? – 2009-09-28 13:37:33

+0

關鍵字,作者,版本,內容類型,上次修改等 – gowth08 2009-09-29 12:13:27

回答

0
Properties prop = new Properties(); 

    try { 
     prop.load(new FileInputStream("filename.properties")); 
    } catch (IOException e) { 
    } 

    // Write properties file. 
    try { 
     prop.store(new FileOutputStream("filename.properties"), null); 
    } catch (IOException e) { 
    } 

你以後是什麼文件屬性。你可以像上面那樣訪問它們。

下面是一個屬性的內容文件示例:

# a comment 
! a comment 

a = a string 
b = a string with escape sequences \t \n \r \\ \" \' \ (space) \u
c = a string with a continuation line \ 
    continuation line 
d.e.f = another string 

http://exampledepot.com/egs/java.util/Props.html

相關問題