Here you can find the source of classNameToPackageName(String fqn)
public static String classNameToPackageName(String fqn)
//package com.java2s; //License from project: Open Source License public class Main { public static final char FQN_SEPARATOR = '.'; public static String classNameToPackageName(String fqn) { int lastSeparatorPos = fqn.lastIndexOf(FQN_SEPARATOR); if (lastSeparatorPos == -1) return null; else/* w w w . j a va 2s .com*/ return fqn.substring(0, lastSeparatorPos); } }