Skip to content

Java CheatSheet

Updated: at 10:12 AM

Table of contents

Open Table of contents

Context

This is a collection of useful references about java. May not be used every day but can keep as a reference.

How to find class conflict

findjar () {
  pattern=$1
  shift
  for jar in $(find $* -type f -name "*.jar")
  do
    match=`<YOUR_JAVA_PATH_HERE>/bin/jar -tvf $jar | grep $pattern`
    if [ ! -z "$match" ]
    then
      echo "Found in: $jar"
      echo "$match"
    fi
  done
}

cd / findjar org.codehaus.stax2.ri.EmptyIterator 2>/dev/null

Previous Post
LeetCode 2466 LintCode 3854 Count Ways to Build Good Strings (Number of Good Binary Strings)
Next Post
LeetCode 875 LintCode 1492 Koko Eating Bananas