Regular Expression
Regular Expression
Java Regex
The Java Regex or Regular Expression is an API to define a pattern for searching or manipulating strings.
It is widely used to define the constraint on strings such as password and email validation. After learning
Java regex tutorial, you will be able to test your regular expressions by the Java Regex Tester Tool.
java.util.regex package
The Matcher and Pattern classes provide the facility of Java regular expression. The java.util.regex package
provides following classes and interfaces for regular expressions.
1. MatchResult interface
2. Matcher class
3. Pattern class
4. PatternSyntaxException class
Matcher class
It implements the MatchResult interface. It is a regex engine which is used to perform match operations
on a character sequence.
No Method Description
.
1 boolean matches() test whether the regular expression matches the pattern.
2 boolean find() finds the next expression that matches the pattern.
3 boolean find(int finds the next expression that matches the pattern from the given start
start) number.
Pattern class
It is the compiled version of a regular expression. It is used to define a pattern for the regex engine.
No Method Description
.
1 static Pattern compile(String regex) compiles the given regex and returns the instance of the
Pattern.
2 Matcher matcher(CharSequence creates a matcher that matches the given input with the
input) pattern.
4 String[] split(CharSequence input) splits the given input string around matches of given
pattern.
1. import java.util.regex.*;
2. public class RegexExample1{
3. public static void main(String args[]){
4. //1st way
5. Pattern p = Pattern.compile(".s");//. represents single character
6. Matcher m = p.matcher("as");
7. boolean b = m.matches();
8.
9. //2nd way
10. boolean b2=Pattern.compile(".s").matcher("as").matches();
11.
12. //3rd way
13. boolean b3 = Pattern.matches(".s", "as");
14.
15. System.out.println(b+" "+b2+" "+b3);
16. }}
Output
1. import java.util.regex.*;
2. class RegexExample2{
3. public static void main(String args[]){
4. System.out.println(Pattern.matches(".s", "as"));//true (2nd char is s)
5. System.out.println(Pattern.matches(".s", "mk"));//false (2nd char is not s)
6. System.out.println(Pattern.matches(".s", "mst"));//false (has more than 2 char)
7. System.out.println(Pattern.matches(".s", "amms"));//false (has more than 2 char)
8. System.out.println(Pattern.matches("..s", "mas"));//true (3rd char is s)
9. }}
5 [a-z&&[def]] d, e, or f (intersection)
Regex Quantifiers
The quantifiers specify the number of occurrences of a character.
Regex Description
Regex Metacharacters
The regular expression metacharacters work as shortcodes.
Regex Description
\b A word boundary
Output:
o Conditional AND
o Conditional OR
o Ternary Operator
Operator Symbol
Conditional or Logical OR ||
Ternary Operator ?:
Conditional AND
The operator is applied between two Boolean expressions. It is denoted by the two AND operators (&&).
It returns true if and only if both expressions are true, else returns false.
Conditional OR
The operator is applied between two Boolean expressions. It is denoted by the two OR operator (||). It
returns true if any of the expression is true, else returns false.
ConditionalOperatorExample.java
1. public class ConditionalOperatorExample
2. {
3. public static void main(String args[])
4. {
5. int x=5, y=4, z=7;
6. System.out.println(x>y && x>z || y<z);
7. System.out.println((x<z || y>z) && x<y);
8. }
9. }
Output
true
false
Ternary Operator
The meaning of ternary is composed of three parts. The ternary operator (? :) consists of three
operands. It is used to evaluate Boolean expressions. The operator decides which value will be assigned to
the variable. It is the only conditional operator that accepts three operands. It can be used instead of the
if-else statement. It makes the code much more easy, readable, and shorter.
Note: Every code using an if-else statement cannot be replaced with a ternary operator.
Syntax:
variable = (condition) ? expression1 : expression2
The above statement states that if the condition returns true, expression1 gets executed, else
the expression2 gets executed and the final result stored in a variable.
Let's understand the ternary operator through the flowchart.
TernaryOperatorExample.java
1. public class TernaryOperatorExample
2. {
3. public static void main(String args[])
4. {
5. int x, y;
6. x = 20;
7. y = (x == 1) ? 61: 90;
8. System.out.println("Value of y is: " + y);
9. y = (x == 20) ? 61: 90;
10. System.out.println("Value of y is: " + y);
11. }
12. }
Output
Value of y is: 90
Value of y is: 61
Let's see another example that evaluates the largest of three numbers using the ternary operator.
LargestNumberExample.java
1. public class LargestNumberExample
2. {
3. public static void main(String args[])
4. {
5. int x=69;
6. int y=89;
7. int z=79;
8. int largestNumber= (x > y) ? (x > z ? x : z) : (y > z ? y : z);
9. System.out.println("The largest numbers is: "+largestNumber);
10. }
11. }
Output
In the above program, we have taken three variables x, y, and z having the values 69, 89, and 79,
respectively. The expression (x > y) ? (x > z ? x : z) : (y > z ? y : z) evaluates the largest number among
three numbers and store the final result in the variable largestNumber. Let's understand the execution
order of the expression.
First, it checks the expression (x > y). If it returns true the expression (x > z ? x : z) gets executed, else the
expression (y > z ? y : z) gets executed.
When the expression (x > z ? x : z) gets executed, it further checks the condition x > z. If the condition
returns true the value of x is returned, else the value of z is returned.
When the expression (y > z ? y : z) gets executed it further checks the condition y > z. If the condition
returns true the value of y is returned, else the value of z is returned.
Therefore, we get the largest of three numbers using the ternary operator.
Data Manipulation
What is Data Manipulation?
Data manipulation is the method of organizing data to make it easier to read or more designed or
structured. For instance, a collection of any kind of data could be organized in alphabetical order so that it
can be understood easily. On the other hand, it can be difficult to find information about any particular
employee in an organization if all the employees' information is not organized. Therefore, all the
employee's information could be organized in alphabetical order that makes it easier to find information
easily of any individual employee. Data manipulation helps website owners to monitor their sources of
traffic and their most popular pages. Hence, it is frequently used on web server logs.
Data manipulation is also used by accounting users or similar fields to organized data in order to figure
out product costs, future tax obligations, pricing patterns, etc. It also helps the stock market predictors to
forecast developments and predicts how stocks might perform in the adjacent future. Furthermore, data
manipulation may also use by computers to display information to users in a more realistic way on the
basis of web pages, the code in a software program, or data formatting.
The DML is used to manipulate data, which is a programming language. It short for Data Manipulation
Language that helps to modify data like adding, removing, and altering databases. It means that changing
the information in a way that can be read easily.
20.2M
466
Next
Stay
o Consistent data: Data manipulation provides a way to organize your data inconsistent format
that makes it structured, which can be read easily and better understood. When you are collecting
data from different-different sources, you may not have a unified view; but data manipulation
provides you surety that the data is well-organized, structured, and stored consistently.
o Project data: Especially when it comes to finances, data manipulation is more useful as it helps to
provide more in-depth analysis by using historical data to project the future.
o Delete or neglect redundant data: Data manipulation helps to maintain your data and delete
unusable data that is always present.
o Overall, with the data, you can do many operations such as edit, delete, update, convert, and
incorporate data into a database. It helps to create more value from the data. If you do not know
how to use data in an effective manner, it becomes pointless. Therefore, it will be beneficial to
make better business decisions when you are able to organize your data accordingly.
1. First of all, data manipulation is possible only if you have data. Therefore, you are required to
create a database that is generated from data sources.
2. This knowledge needs restructuring and reorganization, which could be done with data
manipulation that helps you to cleanse your information.
3. Then, you need to import a database and create it to get start work with data.
4. With the help of data manipulation, you can edit, delete, merge, or combine your information.
5. Finally, data analysis becomes easier at the time of manipulating data.
Format consistency
Data manipulation offers a way to organize data in a unified format, which helps c-suit members to a
better understanding of business intelligence. The collection of data from various sources can be
unstructured, whereas DML (Data manipulation language) allows data to be consistently organized and
more transparent.
Historical overview
The manipulation of data can help you with making the right decisions by providing easy access to data
related to your previous projects. Also, it can help with required team size, budget allocation, and
deadline projections.
Efficiency
The manipulation of data provides efficiency in terms of collecting organized data or meaningful
information. You may not be aware that findings interfere or are redundant, information is relevant or not,
metrics have a low or significant impact. DML offers you the benefit of isolating and identify these facts
quickly.
In daily life, we also see data manipulation; if you are receiving calls from telemarketers, getting targeted
ads on the websites you visit or receiving emails, it is all done through data manipulation. It also helps in
your online behavior in terms of extracting relevant information. For example, when you are visiting any
website and share your email address at this site and agree to terms and conditions, it will monitor your
behavior and likely generate relevant data for you.
o Formulas and functions: In Excel, you can use essential math functions easily to modify your
data through desired values, such as Addition, subtraction, multiplication, and division. However,
you should know that how to use these basic math functions in Excel.
o Autofill: This feature is useful when you want to the same equation across multiple fields or cells
without re-entering the information from scratch. If you do not use this function, you have to
retype the formula or need to drag the cursor from the cell's lower right corner until the cell you
want to fill up. Therefore, users can rely on this feature for the sake of efficiency through the data
manipulation process.
o Sort and Filter: When you are analyzing data and need to find specific data, you can save a lot of
time at that time by using the filtering options. It helps to isolate the information you wish to see.
o Removing duplicates: When you are collecting and assimilating data, there are often chances of
the same sets of information. In Excel, you can delete duplicate spreadsheet entries easily by
using the Delete Duplicate feature.
o Combining column: To paint a clear picture, you can merge columns or rows in Excel or use
other means to organize your data. Column splitting, merging, and merging-Columns or rows
offer users surety that the most relevant cells are immediately visible.
Anyone can get confused by their sound; therefore, here is an instance to explain both terms. Let's take
value X=7. It can be represented by data manipulation as X=3+4, or X=2+5, X=8-1, etc. By using data
manipulation, it can be represented as X=5.
Deployment & Application Enhancement
Java 8 Features
Oracle released a new version of Java as Java 8 in March 18, 2014. It was a revolutionary release of the
Java for software development platform. It includes various upgrades to the Java programming, JVM,
Tools and libraries.
o Lambda expressions,
o Method references,
o Functional interfaces,
o Stream API,
o Default methods,
o Base64 Encode Decode,
o Static methods in interface,
o Optional class,
o Collectors class,
o ForEach() method,
o Nashorn JavaScript Engine,
o Parallel Array Sorting,
o Type and Repating Annotations,
o IO Enhancements,
o Concurrency Enhancements,
o JDBC Enhancements etc.
Lambda Expressions
Lambda expression helps us to write our code in functional style. It provides a clear and concise way to
implement SAM interface(Single Abstract Method) by using an expression. It is very useful in collection
library in which it helps to iterate, filter and extract data.
20.2M
466
OOPs Concepts in Java
Method References
Java 8 Method reference is used to refer method of functional interface . It is compact and easy form of
lambda expression. Each time when you are using lambda expression to just referring a method, you can
replace your lambda expression with method reference.
Functional Interface
An Interface that contains only one abstract method is known as functional interface. It can have any
number of default and static methods. It can also declare methods of object class.
Functional interfaces are also known as Single Abstract Method Interfaces (SAM Interfaces).
Optional
Java introduced a new class Optional in Java 8. It is a public final class which is used to deal with
NullPointerException in Java application. We must import java.util package to use this class. It provides
methods to check the presence of value for particular variable.
forEach
Java provides a new method forEach() to iterate the elements. It is defined in Iterable and Stream
interfaces.
It is a default method defined in the Iterable interface. Collection classes which extends Iterable interface
can use forEach() method to iterate elements.
This method takes a single parameter which is a functional interface. So, you can pass lambda expression
as an argument.
Date/Time API
Java has introduced a new Date and Time API since Java 8. The java.time package contains Java 8 Date
and Time classes.
Default Methods
Java provides a facility to create default methods inside the interface. Methods which are defined inside
the interface and tagged with default keyword are known as default methods. These methods are non-
abstract methods and can have method body.
Nashorn JavaScript Engine
Nashorn is a JavaScript engine. It is used to execute JavaScript code dynamically at JVM (Java Virtual
Machine). Java provides a command-line tool jjs which is used to execute JavaScript code.
StringJoiner
Java added a new final class StringJoiner in java.util package. It is used to construct a sequence of
characters separated by a delimiter. Now, you can create string by passing delimiters like comma(,),
hyphen(-) etc.
Collectors
Collectors is a final class that extends Object class. It provides reduction operations, such as accumulating
elements into collections, summarizing elements according to various criteria etc.
Stream API
Java 8 java.util.stream package consists of classes, interfaces and an enum to allow functional-style
operations on the elements. It performs lazy computation. So, it executes only when it requires.
Stream Filter
Java stream provides a method filter() to filter stream elements on the basis of given predicate. Suppose,
you want to get only even elements of your list, you can do this easily with the help of filter() method.
This method takes predicate as an argument and returns a stream of resulted elements.
This class provides three different encoders and decoders to encrypt information at each level.
2) A improved method AccessController.doPrivileged has been added which enables code to assert a
subset of its privileges, without preventing the full traversal of the stack to check for other permissions.
3) Advanced Encryption Standard (AES) and Password-Based Encryption (PBE) algorithms, such as
PBEWithSHA256AndAES_128 and PBEWithSHA512AndAES_256 has been added to the SunJCE provider.
4) Java Secure Socket Extension (SunJSSE) has enabled Server Name Indication (SNI) extension for client
applications by default in JDK 7 and JDK 8 supports the SNI extension for server applications. The SNI
extension is a feature that extends the SSL/TLS protocols to indicate what server name the client is
attempting to connect to during handshaking.
5) The SunJSSE is enhanced to support Authenticated Encryption with Associated Data (AEAD) algorithms.
The Java Cryptography Extension (SunJCE) provider is enhanced to support AES/GCM/NoPadding cipher
implementation as well as Galois/Counter Mode (GCM) algorithm parameters.
6) A new command flag -importpassword is added to the keytool utility. It is used to accept a password
and store it securely as a secret key. Classes such as java.security.DomainLoadStoreParameter
andjava.security.PKCS12Attribute is added to support DKS keystore type.
7) In JDK 8, the cryptographic algorithms have been enhanced with the SHA-224 variant of the SHA-2
family of message-digest implementations.
9) SecureRandom class provides the generation of cryptographically strong random numbers which is
used for private or public keys, ciphers and signed messages. The getInstanceStrong() method was
introduced in JDK 8, which returns an instance of the strongest SecureRandom. It should be used when
you need to create RSA private and public key. SecureRandom includes following other changes:
o Two new implementations has introduced for UNIX platforms, which provide blocking and non-
blocking behavior.
10) A new PKIXRevocationChecker class is included which checks the revocation status of certificates with
the PKIX algorithm. It supports best effort checking, end-entity certificate checking, and mechanism-
specific options.
11) The Public Key Cryptography Standards 11 (PKCS) has been expanded to include 64-bit supports for
Windows.
12) Two new rcache types are added to Kerberos 5. Type none means no rcache at all, and type dfl means
the DFL style file-based rcache. Also, the acceptor requested subkey is now supported. They are
configured using the sun.security.krb5.rcache and sun.security.krb5.acceptor.subkey system properties.
13) In JDK 8, Kerberos 5 protocol transition and constrained delegation are supported within the same
realm.
14) Java 8 has disabled weak encryption by default. The DES-related Kerberos 5 encryption types are not
supported by default. These encryption types can be enabled by adding allow_weak_crypto=true in the
krb5.conf file.
15) You can set server name to null to denote an unbound server. It means a client can request for the
service using any server name. After a context is established, the server can retrieve the name as a
negotiated property with the key name SASL.BOUND_SERVER_NAME.
16) Java Native Interface (JNI) bridge to native Java Generic Security Service (JGSS) is now supported on
Mac OS X. You can set system property sun.security.jgss.native to true to enable it.
17) A new system property, jdk.tls.ephemeralDHKeySize is defined to customize the ephemeral DH key
sizes. The minimum acceptable DH key size is 1024 bits, except for exportable cipher suites or legacy
mode (jdk.tls.ephemeralDHKeySize=legacy).
18) Java Secure Socket Extension (JSSE) provider honors the client's cipher suite preference by default.
However, the behavior can be changed to respect the server's cipher suite preference by calling
SSLParameters.setUseCipherSuitesOrder(true) over the server.
2) The java command is capable of launching JavaFX applications, provided that the JavaFX application is
packaged correctly.
3) The java command man page (both nroff and HTML) has been completely reworked. The advanced
options are now divided into Runtime, Compiler, Garbage Collection, and Serviceability, according to the
area that they affect. Several previously missing options are now described. There is also a section for
options that were deprecated or removed since the previous release.
4) New jdeps command-line tool allows the developer to analyze class files to determine package-level or
class-level dependencies.
5) You can access diagnostic commands remotely, which were previously accessible only locally via the
jcmd tool. Remote access is provided using the Java Management Extensions (JMX), so diagnostic
commands are exposed to a platform MBean registered to the platform MBean server. The MBean is the
com.sun.management.DiagnosticCommandMBean interface.
6) A new option -tsapolicyid is included in the jarsigner tool which enables you to request a signed time
stamp from a Time Stamping Authority and attach it to a signed JAR file.
8) The type rules for binary comparisons in the Java Language Specification (JLS) Section 15.21 will now be
correctly enforced by javac.
9) In this release, the apt tool and its associated API contained in the package com.sun.mirror have been
removed.
Javadoc Enhancements
In Java SE 8, the following new APIs were added to the Javadoc tool.
o A new DocTree API introduce a scanner which enables you to traverse source code that is
represented by an abstract syntax tree. This extends the Compiler Tree API to provide structured
access to the content of javadoc comments.
o The javax.tools package contains classes and interfaces that enable you to invoke the Javadoc tool
directly from a Java application, without executing a new process.
o The "Method Summary" section of the generated documentation of a class or interface has been
restructured. Method descriptions in this section are grouped by type. By default, all methods are
listed. You can click a tab to view methods of a particular type (static, instance, abstract, concrete,
or deprecated, if they exist in the class or interface).
o The javadoc tool now has support for checking the content of javadoc comments for issues that
could lead to various problems, such as invalid HTML or accessibility issues, in the files that are
generated by javadoc. The feature is enabled by default, and can also be controlled by the new -
Xdoclint option.
Pack200 Enhancements
The Java class file format has been updated because of JSR 292 which Supports Dynamically Typed
Languages on the Java Platform.
The Pack200 engine has been updated to ensure that Java SE 8 class files are compressed effectively.
Now, it can recognize constant pool entries and new bytecodes introduced by JSR 292. As a result,
compressed files created with this version of the pack200 tool will not be compatible with older versions
of the unpack200 tool.
o A New SelectorProvider which may improve performance or scalability for server. The /dev/poll
SelectorProvider continues to be the default. To use the Solaris event port mechanism, run with
the system property java.nio.channels.spi.Selector set to the value
sun.nio.ch.EventPortSelectorProvider.
o The size of <JDK_HOME>/jre/lib/charsets.jar file is decreased.
o Performance has been improvement for the java.lang.String(byte[], ∗) constructor and the
java.lang.String.getBytes() method.
2) A package jdk.net has been added which contains platform specific socket options and a mechanism
for setting these options on all of the standard socket types. The socket options are defined in
jdk.net.ExtendedSocketOptions.
3) In class HttpURLConnection, if a security manager is installed, and if a method is called which results in
an attempt to open a connection, the caller must possess either a "connect"SocketPermission to the
host/port combination of the destination URL or a URLPermission that permits this request.
If automatic redirection is enabled, and this request is redirected to another destination, the caller must
also have permission to connect to the redirected host/URL.
Java.util.concurrent Interfaces
Interface Description
Java.util.concurrent Classes
Class Description
public class CompletableFuture<T> extends Object It is aFuture that may be explicitly completed,
implements Future<T>, CompletionStage<T> and may be used as a CompletionStage,
supporting dependent functions and actions
that trigger upon its completion.
Latest release introduces scalable, updatable, variable support through a small set of new classes
DoubleAccumulator, DoubleAdder, LongAccumulator andLongAdder. It internally employ contention-
reduction techniques that provide huge throughput improvements as compared to Atomic variables.
Class Description
public class DoubleAccumulator extends It is used for one or more variables that together
Number implements Serializable maintain a running double value updated using a
supplied function.
public class DoubleAdder extends Number It is used for one or more variables that together
implements Serializable maintain an initially zero double sum.
public class LongAccumulator extends It is used for one or more variables that together
Number implements Serializable maintain a running long value updated using a supplied
function.
public class LongAdder extends Number It is used for one or more variables that together
implements Serializable maintain an initially zero long sum.
Method Description
Public static int It returns the targeted parallelism level of the common
getCommonPoolParallelism() pool.
Class Description
public class StampedLock extends Object This class represents a capability-based lock with three
implements Serializable modes for controlling read/write access.
The rationale for this is to allow for future modularization of the Java SE platform where service providers
may be deployed by means other than JAR files and perhaps without the service configuration files.
Babel Language Packs in Japanese and Simplified Chinese are now included by default in the Java Mission
Control that is included in the JDK 8.
The JDK 8 includes support for Unicode 6.2.0. It contains the following features.
o 7 new scripts:
o Meroitic Hieroglyphs
o Meroitic Cursive
o Sora Sompeng
o Chakma
o Sharada
o Takri
o Miao
o 11 new blocks: including 7 blocks for the new scripts listed above and 4 blocks for the following
existing scripts:
o Arabic Extended-A
o Sundanese Supplement
o Meetei Mayek Extensions
o Arabic Mathematical Alphabetical Symbols
o CLDR represents the locale data provided by the Unicode CLDR project.
o HOST represents the current user's customization of the underlying operating system's settings. It
works only with the user's default locale, and the customizable settings may vary depending on
the OS, but primarily Date, Time, Number, and Currency formats are supported.
o SPI represents the locale sensitive services implemented in the installed SPI providers.
o JRE represents the locale data that is compatible with the prior JRE releases.
To select the desired locale data source, use the java.locale.providers system property. listing the data
sources in the preferred order. For example: java.locale.providers=HOST,SPI,CLDR,JRE The default
behavior is equivalent to the following setting: java.locale.providers=JRE,SPI
Two new abstract classes for service providers are added to the java.util.spi package.
Class Description
public abstract class CalendarDataProvider It is an abstract class for service providers that provide
extends LocaleServiceProvider locale-dependent Calendar parameters.
public abstract class It is an abstract class for service providers that provide
CalendarNameProvider extends localized string representations (display names) of
LocaleServiceProvider Calendar field values.
Method Description
public static final It is used to get the DecimalFormatSymbols instance for the specified
DecimalFormatSymbols locale. This method provides access to DecimalFormatSymbols
getInstance(Locale locale) instances for locales supported by the Java runtime itself as well as for
those supported by installed DecimalFormatSymbolsProvider
implementations. It throws NullPointerException if locale is null.
Method Description
public boolean It returns true if the given locale is supported by this locale service
isSupportedLocale(Locale provider. The given locale may contain extensions that should be
locale) taken into account for the support determination. It is define in
java.util.spi.LocaleServiceProvider class
public String It returns the calendar type of this Calendar. Calendar types are
getCalendarType() defined by the Unicode Locale Data Markup Language (LDML)
specification. It is defined in java.util.Calendar class.
New style specifiers are added for the Calendar.getDisplayName and Calendar.getDisplayNames methods
to determine the format of the Calendar name.
Specifier Description
public static final int It is a style specifier for getDisplayName and getDisplayNames
SHORT_FORMAT indicating a short name used for format.
public static final int It is a style specifier for getDisplayName and getDisplayNames
LONG_FORMAT indicating a long name used for format.
public static final int It is a style specifier for getDisplayName and getDisplayNames
SHORT_STANDALONE indicating a short name used independently, such as a month
abbreviation as calendar headers.
public static final int It is a style specifier for getDisplayName and getDisplayNames
LONG_STANDALONE indicating a long name used independently, such as a month name as
calendar headers.
Two new Locale methods for dealing with a locale's (optional) extensions.
Method Description
public Locale It returns a copy of this Locale with no extensions. If this Locale has no
stripExtensions() extensions, this Locale is returned itself.
Two new Locale.filter methods return a list of Locale instances that match the specified criteria, as defined
in RFC 4647:
Method Description
public static List<Locale> It returns a list of matching Locale instances using the
filter(List<Locale.LanguageRange> filtering mechanism defined in RFC 4647. This is equivalent
priorityList,Collection<Locale> locales) to filter(List, Collection, FilteringMode) when mode is
Locale.FilteringMode.AUTOSELECT_FILTERING.
public static List<Locale> It returns a list of matching Locale instances using the
filter(List<Locale.LanguageRange> filtering mechanism defined in RFC 4647.
priorityList,Collection<Locale> locales,
Locale.FilteringMode mode)
Two new Locale.filterTags methods return a list of language tags that match the specified criteria, as
defined in RFC 4647.
Method Description
public static List<String> It returns a list of matching languages tags using the
filterTags(List<Locale.LanguageRange> basic filtering mechanism defined in RFC 4647. This is
priorityList, Collection<String> tags) equivalent to filterTags(List, Collection, FilteringMode)
when mode is
Locale.FilteringMode.AUTOSELECT_FILTERING.
public static List<String> It returns a list of matching languages tags using the
filterTags(List<Locale.LanguageRange> basic filtering mechanism defined in RFC 4647.
priorityList, Collection<String> tags,
Locale.FilteringMode mode)
Two new lookup methods return the best-matching locale or language tag using the lookup mechanism
defined in RFC 4647.
Method Description
public static Locale lookup(List<Locale.LanguageRange> It returns a Locale instance for the best-
priorityList, Collection<Locale> locales) matching language tag using the lookup
mechanism defined in RFC 4647.
1) The frequency in which the security prompts are shown for an application has been reduced.
1) An option to suppress offers from sponsors when the JRE is installed or updated is available in the
Advanced tab of the Java Control Panel.
2) The Entry-Point attribute can be included in the JAR file manifest to identify one or more classes as a
valid entry point for your RIA(Rich Internet application).
1) The javafxpackager tool has been renamed to javapackager. This tool has been enhanced with new
arguments for self-contained application bundlers.
o An experimental JIT compiler option related to Restricted Transactional Memory (RTM) has been
added.
o Several options related to string deduplication have been added.
o Several options related to Advanced Encryption Standard (AES) intrinsics have been added.
o Combinations of garbage collection options have been deprecated.
2) Garbage Collection Tuning Guide has been added to the Java HotSpot Virtual Machine. It describes the
garbage collectors included with the Java HotSpot VM and helps you to decide which garbage collector
can best optimize the performance of your application, especially if it handles large amounts of data
(multiple gigabytes), has many threads, and has high transaction rates.
Java tool
2) Java Flight Recorder (JFR) offers a variety of ways to unlock commercial features and enable JFR during
the runtime of an application.
It includes java command line options such as jcmd diagnostic commands and Graphical User Interface
(GUI) controls within Java Mission Control. This flexibility enables you to provide the appropriate options
at startup, or interact with JFR later.
4) The options related to Restricted Transactional Memory (RTM) are no longer experimental. These
options include -XX:RTMAbortRatio=abort_ratio, -XX:RTMRetryCount=number_of_retries, -XX:
+UseRTMDeopt, and -XX:+UseRTMLocking.
5) In Java 8, Application Class Data Sharing (AppCDS) has been introduced. AppCDS extends CDS (Class
Data Sharing) to enable classes from the standard extensions directories and the application class path to
be placed in the shared archive. This is a commercial feature and is no longer considered experimental.
7) Additional information about large pages has been added. Large Pages, also known as huge pages, are
memory pages that are significantly larger than the standard memory page size. Large pages optimize
processor Translation-Lookaside Buffers. The Linux options -XX:+UseHugeTLBFS, -XX:+UseSHM, and -XX:
+UseTransparentHugePages have been documented.
JJS tool
1) The option --optimistic-types=[true|false] has been added. It enables or disables optimistic type
assumptions with deoptimizing recompilation.
2) The option --language=[es5] has been added to the jjs tool. It specifies the ECMAScript language
version.
Javapackager tool
1) New arguments are available for OS X bundlers. The mac.CFBundleVersion argument identifies the
internal version number to be used.
2) The mac.dmg.simple argument indicates if DMG customization steps that depend on executing
AppleScript code are skipped.
Jcmd tool
Jcmd tool is used to dynamically interact with Java Flight Recorder (JFR). You can use it to unlock
commercial features, enable/start/stop flight recordings, and obtain various status messages from the
system.
Jstat tool
The jstat tool has been updated with information about compressed class space which is a special part of
metaspace.
Virtual machine
The Scalable Native Memory Tracking HotSpot VM feature helps diagnose VM memory leaks and clarify
users when memory leaks are not in the VM. Native Memory Tracker can be run without self-shutdown on
large systems and without causing a significant performance impact beyond what is considered
acceptable for small programs.
Lambda Expressions
Java Lambda Expressions
Lambda expression is a new and important feature of Java which was included in Java SE 8. It provides a
clear and concise way to represent one method interface using an expression. It is very useful in collection
library. It helps to iterate, filter and extract data from collection.
The Lambda expression is used to provide the implementation of an interface which has functional
interface. It saves a lot of code. In case of lambda expression, we don't need to define the method again
for providing the implementation. Here, we just write the implementation code.
Java lambda expression is treated as a function, so compiler does not create .class file.
Functional Interface
Lambda expression provides implementation of functional interface. An interface which has only one
abstract method is called functional interface. Java provides an anotation @FunctionalInterface, which is
used to declare an interface as functional interface.Java Program for Beginne
No Parameter Syntax
1. () -> {
2. //Body of no parameter lambda
3. }
1. (p1) -> {
2. //Body of single parameter lambda
3. }
1. (p1,p2) -> {
2. //Body of multiple parameter lambda
3. }
Let's see a scenario where we are not implementing Java lambda expression. Here, we are implementing
an interface without using lambda expression.
Output:
Drawing 10
1. @FunctionalInterface //It is optional
2. interface Drawable{
3. public void draw();
4. }
5.
6. public class LambdaExpressionExample2 {
7. public static void main(String[] args) {
8. int width=10;
9.
10. //with lambda
11. Drawable d2=()->{
12. System.out.println("Drawing "+width);
13. };
14. d2.draw();
15. }
16. }
Output:
Drawing 10
A lambda expression can have zero or any number of arguments. Let's see the examples:
Output:
Output:
Hello, Sonoo
Hello, hcl
Output:
30
300
1. interface Addable{
2. int add(int a,int b);
3. }
4.
5. public class LambdaExpressionExample6 {
6. public static void main(String[] args) {
7.
8. // Lambda expression without return keyword.
9. Addable ad1=(a,b)->(a+b);
10. System.out.println(ad1.add(10,20));
11.
12. // Lambda expression with return keyword.
13. Addable ad2=(int a,int b)->{
14. return (a+b);
15. };
16. System.out.println(ad2.add(100,200));
17. }
18. }
Output:
30
300
Output:
ankit
mayank
irfan
jai
Output:
1. public class LambdaExpressionExample9{
2. public static void main(String[] args) {
3.
4. //Thread Example without lambda
5. Runnable r1=new Runnable(){
6. public void run(){
7. System.out.println("Thread1 is running...");
8. }
9. };
10. Thread t1=new Thread(r1);
11. t1.start();
12. //Thread Example with lambda
13. Runnable r2=()->{
14. System.out.println("Thread2 is running...");
15. };
16. Thread t2=new Thread(r2);
17. t2.start();
18. }
19. }
Output:
Thread1 is running...
Thread2 is running...
Java lambda expression can be used in the collection framework. It provides efficient and concise way to
iterate, filter and fetch data. Following are some lambda and collection examples provided.
Output:
Output:
Output: