如何从Java中的CURL响应中删除HTTP标头

时间:2016-07-09 20:17:35

标签: java http parsing web http-headers

我需要从Java中解析的网页中删除HTTP标头。

let appInvite = FBSDKAppInviteContent()
appInvite.appLinkURL = NSURL(string: "A VALID LINK")!
appInvite.appInvitePreviewImageURL = NSURL(string: "A VALID URL")!
FBSDKAppInviteDialog.showFromViewController(self, withContent: appInvite, delegate: self)

如上所示,前几行是http标头。 我需要摆脱它们来处理已解析的页面,但是,由于标题的长度和内容不同,我不确定如何做到这一点。

有人可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

你可以简单地获得例如索引<html和子串这个字符串。

text.substring(text.indexOf("<html"))