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

com.daioware.net.http.items.QueryParameter Maven / Gradle / Ivy

There is a newer version: 1.1.3-RELEASE
Show newest version
package com.daioware.net.http.items;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

public class QueryParameter extends KeyValue{

	public QueryParameter(String key, String value) {
		super(key,value);
	}

	public String toString(String encoding) throws UnsupportedEncodingException {
		String val=getValue();
		return val!=null?getKey()+"="+URLEncoder.encode(val, encoding):"";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy