• 04 August

    How to check if session exists or not in java

    In this post, we will see how to check if HTTP session exists or not in java.  Sometimes you need to check if session already exists or not and based on that perform some operations. If you use below code to get the session: [crayon-6620ca4ecc9d8646726774/] You will never get above session object as null because […]

  • 01 August

    How To Get HTTP Response Header In Java

    In this post, we will see how to get HTTP response header in java. We have already seen how to send get or post request in java. I am using same example to demonstrate to get HTTP response header. [crayon-6620ca4ece3bc453283836/] [crayon-6620ca4ece3c5633432870/] When you run above code, you will get below output: [crayon-6620ca4ece3c7751108393/]

  • 01 August

    How to get HTTP Request Header In Java

    In this post , we will see how to get HTTP request header in java. Sometimes, you want to print request header values. It is very simple to do it. You first need to get request object, then call getHeaderFields()  on it to get all request header values. [crayon-6620ca4ed1542096456094/] Spring MVC: If you are using […]

  • 27 July

    How to send HTTP request GET/POST in Java

    In this post, we will see how to send HTTP Get/Post in java. There are many times when you need to send http get or post request. You can use HttpURLConnection for sending get/post request in java. It belongs to java.net package. HttpURLConnection example: We are going to send get or post request to URLs […]