Articles, Home

Get started with Servlet 4.0

Servlet 4.0 fully integrates HTTP/2’s server push technology, and also enables runtime discovery of a servlet’s mapping URL. With video demonstrations and code examples, this hands-on tutorial gets you started with HTTP/2 server push and the new HttpServletMapping interface in Java servlet and JSF applications.

Articles, Home

Java – Append to File – HowToDoInJava

Learn to append content to file in java using BufferedWritter, PrintWriter, FileOutputStream and Files class. In all the examples, while opening the file to write, you have pass a second argument as true which denotes that file is opened in append mode. Table of Contents Append to File using BufferedWritter Append to File using PrintWriter …