Java 超链接阅读文本
我正在尝试从超链接读取该名称,并使用该名称与另一个名称进行比较以进行验证。
编辑: 这就是我目前所拥有的
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是您有两个 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 usingString.equals()
.