|

Java 8 Features

a brief overview of features

here i want to discuss most considerable features in java 8 !

  1. Lambda expressions
  2. Pipeline and streams
  3. Data and time api
  4. Default methods
  5. Type annotations
  6. Nashron javascript engine
  7. Concurrent accumulators
  8. Parallel operations
  9. Permgen space removed
  10. TLS SNI

Similar Posts

  • | |

    Read RSS feeds using JSP

    <%@page contentType=”text/html”%> <%@page pageEncoding=”UTF-8″%> <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”> <%@page import=”java.net.URL”%> <%@page import=”javax.xml.parsers.DocumentBuilder”%> <%@page import=”javax.xml.parsers.DocumentBuilderFactory”%> <%@page import=” org.w3c.dom.CharacterData”%> <%@page import=” org.w3c.dom.Document”%> <%@page import=”org.w3c.dom.Element”%> <%@page import=”org.w3c.dom.Node”%> <%@page import=”org.w3c.dom.NodeList”%> <%@page import=”java.lang.*”%> <% String desc=null; try { DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder(); URL u = new URL(“http://feed43.com/eenadu.xml”);   // feed address Document doc = builder.parse(u.openStream()); String title;…

  • | |

    Ant tool for Java

    what is ant tool ? 1) Ant is a java based build tool to automate build process. more clearly says … Ant is an open-source Java-based build tool from the Apache Software Foundation. It’s rapidly become the  build tool for J2EE projects, so for developers, it’s certainly worth becoming familiar with the basics of Ant,…

  • | | |

    Reading the data from the property file using Java

    we are using property file to store some organized data, like database url and connection username etc., reading from this property file is easy and useful myproperties.properties  // my properties file name it`s contain name=katta vijay age=24 email=mail@javamix.net Main.java     // to read data from property file package javamixposts; import java.io.*; import java.util.*; /** * *…

  • | |

    Read RSS feeds by Using Java

    /* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author vijay * */ import java.net.URL; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.CharacterData; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class RSSReader { private static RSSReader instance = null; private RSSReader() {…

Leave a Reply

Your email address will not be published. Required fields are marked *