Core Java
Thread-safe Hash Map in Java and their performance benchmark
2731
1. Java Thread-safe Map Overview The Map object is an associative containers that store elements, formed by a combination of a uniquely identify key and
ASJAVA.COM
Core Java
How to get the stack trace of current thread in Java
114.3к.
This tutorial demonstrates how to dump stack track of the current thread in Java, this is very useful troubleshoot or debug skill to identify the states
ASJAVA.COM
Core Java
Java Map Iterator Example
2385
Java Map Overview Map is an important Java collection implementation defined in java.util package, it is designed to store with key and value  element pairs.
ASJAVA.COM
Core Java
Java Book Recommendations: Top and Best Java Books
0553
Top1 Java Book Recommendation: Thinking in Java Author: Bruce Eckel, Date of publication: February 2006, Reviewer: Meera Subbarao. Download: http://www.
ASJAVA.COM
Core Java
Java Remote Debugging on WebLogic Server with Eclipse
0574
Oracle’s WebLogic is a leading Java-based server software application that runs on a middle tier. Eclipse is an open-source community that develops open
ASJAVA.COM
Core Java
How to HotSwap Java Code into JVM (Redefinition Example)
0447
Java HotSwap Overview The terms of development is actually writing code, testing and fixing bugs with frequency, the most of common thing we want is that
ASJAVA.COM
Core Java
How to Sort a List in Java
0453
We usually have problem to sort the specified list into ascending order, according to the natural ordering of its elements. This article look though how
ASJAVA.COM
Core Java
Java Access Modifiers: Public, Protected, Friendly and Private
11.7к.
The access to classes, constructors, methods and fields are regulated using access modifiers in Java, by signing the access Modifiers, a class or method
ASJAVA.COM
Core Java
How to Release system-wide(Global) Hotkeys, Keyboard Shortcut in Java
011.5к.
Here is one way to perform a system-wide (global) keyboard shortcut in out-of-JVM applications. package com.asjava; import java.awt.*; import java.awt.datatransfer.Transferable;
ASJAVA.COM
Core Java
How Do I Make an Executable JAR File
1292
What’s is Jar? it is built on the ZIP file format and have the .jar file extension and introduced to Java to describe Java binary files, it is combination
ASJAVA.COM