All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.siddharthgoel88.useragents.impl.Wget Maven / Gradle / Ivy

Go to download

Java utility to get User Agents from an exhaustive list of browsers, crawlers and many other softwares.

The newest version!
package io.github.siddharthgoel88.useragents.impl;

import io.github.siddharthgoel88.useragents.UserAgent;

/**
 * UserAgents from latest to oldest for Wget
 */
public class Wget extends UserAgent {	
	
	public String[] getAllUserAgentStrings() {
		String [] userAgentStrings = {
			"Wget/1.9+cvs-stable (Red Hat modified)",
			"Wget/1.9.1",
			"Wget/1.9",
			"Wget/1.8.2",
			"Wget/1.8.1",
			"Wget/1.7",
			"Wget/1.6",
			"Wget/1.5.3",
			"Wget/1.15 (darwin13.0.2)",
			"Wget/1.11.4 (Red Hat modified)",
			"Wget/1.11.1 (Red Hat modified)",
			"Wget/1.10.2 (Red Hat modified)",
			"Wget/1.10.2",
			"Wget/1.10.1-beta1",
			"Wget/1.10.1 (Red Hat modified)",
			"Wget/1.10.1",
			"wget"
		};
		return userAgentStrings;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy