如何使用java从html文件中提取元数据

发布于 2024-08-06 04:46:07 字数 90 浏览 3 评论 0原文

您好,我一直在做一个项目,其中需要各种文件类型(html、xml 等)的元数据。是否有任何现有的 api 可以执行上述操作。欢迎对上述内容提出意见和建议。 提前致谢。

hi ive been doing a project in which metadata for various filetypes(html, xml etc.,) are needed. are there any existing api's to do the above. ideas and suggestions regardin the above are welcome.
thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

落日海湾 2024-08-13 04:46:07
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) \u0123
c = a string with a continuation line \
    continuation line
d.e.f = another string

http://exampledepot.com/例如/java.util/Props.html

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) {
    }

What your after is the file properties. You can access them like above.

Here is an example of the contents of a properties file:

# a comment
! a comment

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文