Here you can find the source of getSecondVersion(String buildId)
public static String getSecondVersion(String buildId)
//package com.java2s; public class Main { public static String getSecondVersion(String buildId) { String[] items = buildId.split("\\."); return items[1]; }/*from ww w.ja va 2 s . com*/ }