Get image for captcha session
问题 I want to get the current captcha that is displayed on a website. An example of this would be http://top100arena.com/in.asp?id=58978 How would I get the image link of the captcha that is displayed other than right clicking - > open image in new page? 回答1: You are looking for the div identified by "rechapta_image" : Then extract the src attribute of the img element inside this div. To do this, you can choose for an easy String-operation-based way or use a HTML parsing library like JSoup. Here