
Quick Contact
Java Tutorial
- What is Java?
- History of Java
- Hello Java Program
- Features of Java
- Basic Syntax
- Java Setup
- Data Types in Java
- Java Variables
- Operators in Java
- JVM
- Java If-else Statement
- Switch Case Statement
- Java Loops
- Do-While Loop
- Java While Loop
- Continue Statement
- Break Statement in Java
- Constructors in Java
- Oops Concept in Java
- Features of OOPs
- Inheritance
- Exeception handeling
- Aggregation (HAS-A relationship) in Java
- Method Overriding in Java
- Method Overloading
- Java Static Keyword
- Java This Keyword
- Java Final Keyword
- Polymorphism
- Static Binding and Dynamic Binding
- Abstract class in Java
- Access Modifiers in Java
- Difference between abstract class and interface
- Interface in Java
- Garbage Collection in Java
- Java Package
- Encapsulation
- Serialization and Deserialization in Java
- Java Inner Classes
- Java Applets
- Multithreading in Java
- Thread Priorities in Java
- Thread Creation
- Inter Thread Communication
- Wrapper Classes in Java
- Java Input Output
- Java AWT Introduction
- Java Layout Manager
- Java Layout Policy
- Java AWT Events
- Collection Framework
- Collection Framework List Interface
- Swing in Java
- Swing Utility Classes
- Swing Layout Managers
- Java JDBC
- Hibernate Framework Overview – Architecture and Basics
Springboot
- Spring Environment Setup
- Spring Boot CRUD REST API Project using IntelliJ IDEA | Postman | MySQL
- Dockerizing Spring Boot Application | Spring Boot Docker Tutorial
- spring-boot-restapidocumentation with swagger
- Spring Boot HttpClient Overview
- Apache HttpClient POST HTTP Request Example
- Apache HttpClient PUT HTTP Request Example
- Apache HttpClient DELETE HTTP Request Example
- Apache HttpClient HTML Form POST Request Example
- Spring Boot JSP Exampl
- Deploying Spring Boot WAR file with JSP to Tomcat
- Spring Boot Annotations
- Spring Core Annotations
- Spring MVC Annotations with Examples
- Spring Scheduling Annotations
- Spring - Java-based Container Configuration
- Spring Java Based Configuration Example
Hibernate
- Hibernate 5 hello world
- Hibernate- One to One Unidirectional Mapping Annotation Example
- Hibernate - Batch Processing
- Hibernate - Interceptors
- Hibernate 5 - Create, Read, Update and Delete (CRUD) Operations Example
- Hibernate Transaction Management
- Hibernate One to Many Unidirectional Mapping Example
- Hibernate One to Many Bidirectional Mapping Example
- Hibernate Many to Many Annotation Mapping Example
- Hibernate Primary KeyJoin Column
- Hibernate First Level Cache with Example
- Hibernate XML Configuration Example with Maven + Eclipse + MySQL Database
- Hibernate Java Configuration Example
- JPA 2 with Hibernate 5 Bootstrapping Example
- JPA and Hibernate Cascade Types
- Hibernate/JPA - Primary Key Generation
- Hibernate 5 - Enum Type Mapping Example
- Hibernate Component Mapping
- Hibernate Object States – Transient,Persistent and Detached
- Hibernate 5 - Save an Entity Example
- Hibernate 5 - Persist an Entity Example
- Hibernate 5 - saveOrUpdate() Method Example
- Hibernate 5 - get(), load() and byId() Method Examples
- Hibernate 5 - merge() Example
- Hibernate 5 - Delete or Remove an Entity Example
- Hibernate 5 - load() Method Example
- Hibernate Session Interface Methods
- Hibernate Session.clear() Method Example
- Introduction Of Java strutes to Architecture
- Struts 2 - Architecture
- Struts 2 - Configuration Files
- Struts 2 - Actions
- Struts 2 - Interceptors
- Struts 2 - Results & Result Types
- Struts 2 - Value Stack/OGNL
- Struts 2 - File Uploading
- Struts 2 - Database Access
- Struts 2 - Validations Framework
JAVA FX
- JavaFX Tutorial
- Introduction to JavaFX Pane
- JavaFX Popup
- JavaFX group
- JavaFX Controller
- JavaFX Gradient Color
- JavaFXAnchorPane
- JavaFXTabPane
- JavaFX Scene
- JavaFX Stage
- JavaFXWebView
- JavaFX Timeline
- JavaFX Timer
- JavaFX Image
- JavaFX Background
- JavaFX dialog
- JavaFX Font
- JavaFXTextArea
- JavaFXObservableList
- JavaFX GUI
- JavaFX FXML
- JavaFXEventHandler
- JavaFXGradle
- JavafxScrollpane
- JavaFXAPI
Apache HttpClient HTML Form POST Request Example
Working with HTML forms
Many applications need to simulate the process of submitting an HTML form, for instance, in order to log in to a web application or submit input data. HttpClient provides the entity class UrlEncodedFormEntity to facilitate the process.
List< NameValuePair>formparams=newArrayList< NameValuePair>(); formparams.add(newBasicNameValuePair("param1", "value1")); formparams.add(newBasicNameValuePair("param2", "value2")); UrlEncodedFormEntity entity =newUrlEncodedFormEntity(formparams, Consts.UTF_8); HttpPosthttppost=newHttpPost("http://localhost/handler.do"); httppost.setEntity(entity);
The UrlEncodedFormEntity instance will use the so-called URL encoding to encode parameters and produce the following content:
param1=value1¶m2=value2
HttpClient supports out of the box all HTTP methods defined in the HTTP/1.1 specification: GET, HEAD, POST, PUT, DELETE, TRACE, and OPTIONS. There is a specific class for each method type.: HttpGet, HttpHead, HttpPost, HttpPut, HttpDelete, HttpTrace, and HttpOptions.
In this example, we will use HttpPost class to handle the POST HTTP method.
Using the Apache HttpClient – Maven dependencies
The Apache HttpClient library allows handling HTTP requests. To use this library add a dependency to your Maven or Gradle build file. You find the latest version here: https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
We use maven to manage our dependencies and are using Apache HttpClient version 4.5. Add the following dependency to your project.
< dependency> < groupId>org.apache.httpcomponents< /groupId> < artifactId>httpclient< /artifactId> < version>4.5< /version> < /dependency>
Development Steps
-
Create instance of CloseableHttpClient using helper class HttpClients.
CloseableHttpClienthttpclient=HttpClients.createDefault()
The HttpClients.createDefault() method creates CloseableHttpClient instance with default configuration.
-
Create a basic POST request
HttpPosthttpPost=newHttpPost(“http://httpbin.org/post”);
-
Prepare Form Object
List< NameValuePair> form =newArrayList<>(); form.add(newBasicNameValuePair("John", "Cena")); form.add(newBasicNameValuePair("Tom", "Cruise")); form.add(newBasicNameValuePair("tony", "stark")); UrlEncodedFormEntity entity =newUrlEncodedFormEntity(form, Consts.UTF_8);
-
Create a custom response handler
ResponseHandler< String>responseHandler= response -> { int status =response.getStatusLine().getStatusCode(); if (status >=200&& status <300) { HttpEntity entity =response.getEntity(); return entity !=null?EntityUtils.toString(entity) :null; } else { thrownewClientProtocolException("Unexpected response status: "+ status); } };
-
Send basic POST request via execute() Method
StringresponseBody=httpclient.execute(httpPost, responseHandler);
Submitting HTML Form Parameters
In the following example, we post HTML Form parameters to the resource http://httpbin.org/post. This resources acknowledges the data and returns a JSON object which we’ll simply print to the console. When sending HTML Form parameters, you should normally set the content-type to application/x-www-form-urlencoded, but Apache HttpClient automatically detects the content type and will set it accordingly.
packagecom.tutorial.ducatindia.httpclient.examples;
importorg.apache.http.Consts; importorg.apache.http.HttpEntity; importorg.apache.http.NameValuePair; importorg.apache.http.client.ClientProtocolException; importorg.apache.http.client.ResponseHandler; importorg.apache.http.client.entity.UrlEncodedFormEntity; importorg.apache.http.client.methods.HttpPost; importorg.apache.http.impl.client.CloseableHttpClient; importorg.apache.http.impl.client.HttpClients; importorg.apache.http.message.BasicNameValuePair; importorg.apache.http.util.EntityUtils; importjava.io.IOException; importjava.util.ArrayList; importjava.util.List; /** * This example demonstrates the use of {@linkHttpPost} request method. And * sending HTML Form request parameters */ publicclassHttpClientHttpFormExample { publicstaticvoidmain(String...args) throwsIOException { try (CloseableHttpClienthttpclient=HttpClients.createDefault()) { List form =newArrayList<> (); form.add(newBasicNameValuePair("John", "Cena")); form.add(newBasicNameValuePair("Tom", "Cruise")); form.add(newBasicNameValuePair("tony", "stark")); UrlEncodedFormEntity entity =newUrlEncodedFormEntity(form, Consts.UTF_8); HttpPosthttpPost=newHttpPost("http://httpbin.org/post"); httpPost.setEntity(entity); System.out.println("Executing request "+httpPost.getRequestLine()); // Create a custom response handler ResponseHandler< String>responseHandler= response -> { int status =response.getStatusLine().getStatusCode(); if (status >=200&& status <300) { HttpEntityresponseEntity=response.getEntity(); returnresponseEntity!=null?EntityUtils.toString(responseEntity) :null; } else { thrownewClientProtocolException("Unexpected response status: "+ status); } }; StringresponseBody=httpclient.execute(httpPost, responseHandler); System.out.println("----------------------------------------"); System.out.println(responseBody); } } }
Output
Executing request POST http://httpbin.org/post HTTP/1.1
—————————————-
{ "args": {}, "data": "", "files": {}, "form": { "John": "Cena", "Tom": "Cruise", "tony": "stark" }, "headers": { "Accept-Encoding": "gzip,deflate", "Connection": "close", "Content-Length": "31", "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8", "Host": "httpbin.org", "User-Agent": "Apache-HttpClient/4.5 (Java/1.8.0_172)" }, "json": null, "origin": "49.35.12.218", "url": "http://httpbin.org/post" }
Apply now for Advanced Java Training Course