Now, I'm going to explain a program which will send a gentle HTTP request to the web server and displays the response headers and response body. This program will shows how a web browser fetches the i...
Java
Java is a very popular programming language for developing different scale applications. Java can be used to develop various different kind of applications i.e.; a desktop application, mobile application, web application etc.
Java is an object oriented programming language developed by Sun Microsystems in 1995.
Learn more about Java evolution
To continue to my HTTP protocol posts, here is a sample program which acts as a web server. Very basic program to print the headers when client sends a request and responding the bytes if the requeste...
Hi guys.. As I told you in my previous image resize post, here is the latest program for creating the thumbnails of different sized with out any image distortion and lack of quality. Keep that in mind...
Hi - Have you worked with Java file system objects? It has very good features like accessing files and sorting them in ascending order and descending order. In Java 1.5, Sun Microsystem has introduced...
As we've discussed in previous posts, HTTP response initial request line will always have one status code. Here is the explaination on HTTP status codes.When a request is made to your server for a pag...
I'm going to discuss about the set of common methods for HTTP/1.1. Although this set can be expanded, additional methods cannot be assumed to share the same semantics for separately extended clients a...
Hello... If you're not really familiar with HTTP protocol, this post is for you. Most of us doesn't really know the concepts of HTTP. Of course we no need to know the concepts in order use the technol...
Here is the second article of questions on SCJP 1.5. If you haven't read the first article, click here to read.Question: 6Given:1. import java.util.*;2. public class Old {3. public static Object get...
Selection sortSelection sort is a simple algorithm which will be applicable to sort the small lists or mostly sorted lists. Selection sort would sort by finding the minimum (in case of ascending) or m...
Hi guys... Now a days FLV format became very famous since it is very compact and will play through browser without any extra software. So it became a hot topic now for every web application.If you wan...