Java 超链接阅读文本

发布于 2024-11-08 19:51:34 字数 520 浏览 0 评论 0原文

我正在尝试从超链接读取该名称,并使用该名称与另一个名称进行比较以进行验证。

编辑: 这就是我目前所拥有的

String linkText = ####;

    for(int i = 0; i < objs.length; i++) {

        ArrayList<String> options = new ArrayList<String>();
        options.add("nameLink");
        options.add("nameLink");
        options.add("nameLink");
        options.add("nameLink");
        options.add("nameLink");

        if (options.contains(linkText))

我想要的是获取超链接的名称 ALink = www.link.com 所以我希望将ALINK发送到linkText来比较名称是否相同。

I'm trying to read the name from a hyperlink and use the name to compare with another for verification.

EDIT:
This is what i currently have

String linkText = ####;

    for(int i = 0; i < objs.length; i++) {

        ArrayList<String> options = new ArrayList<String>();
        options.add("nameLink");
        options.add("nameLink");
        options.add("nameLink");
        options.add("nameLink");
        options.add("nameLink");

        if (options.contains(linkText))

What i want is to get the name of the hyperlink
ALink = www.link.com
so i want ALINK to be sent to linkText to compare if the name is the same.

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

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

发布评论

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

评论(1

树深时见影 2024-11-15 19:51:34

如果您的意思是您有两个 URL,那么您可以使用 URL.toString() 方法,然后使用 String.equals() 比较两个字符串。

If you meant that you have two URL's, then you can use the URL.toString() method, and then compare the two Strings using String.equals().

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