eclipse中如何动态改变HTML的内容

发布于 2024-11-03 09:57:45 字数 193 浏览 0 评论 0原文

我从 IFile 获取 HTML 文件的路径- 方法就像 -

public IStatus runCustomizer(final IFile file, final IDOMPosition position)
    {}

通过这个 IFile,我得到一个 HTML 文件。现在我想修改html文件。

I am getting the path of HTML file from IFile-
The method is like -

public IStatus runCustomizer(final IFile file, final IDOMPosition position)
    {}

Through this IFile, I am getting an HTML file. Now I want to modify the html file.

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

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

发布评论

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

评论(1

花海 2024-11-10 09:57:45

我不确定这个问题是否受到 Eclipse 的限制。您可以将文件读入任何 DOM 演示文稿,例如 JDom、Saxon、Xerces 等,并对其执行 XSLT 转换。这种方式最常见,但也比较重。您可以手动对 DOM 呈现进行自定义。仅当您的 html 文件格式正确时,这些方法才是可接受的。如果没有,您可以像使用文本文件一样使用它,但这是更容易出错的方法。

I'm not sure the question is restricted with Eclipse. You can read file into any DOM presentation e.g. JDom, Saxon, Xerces etc. and perform XSLT transformation on it. This way is most common but heavy. You can perform customization on DOM presentation manually. These ways are acceptable only if your html file is well-formed. If no you can work with it like with text file but this is more error prone approach.

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