Java Second Get getSecondVersion(String buildId)

Here you can find the source of getSecondVersion(String buildId)

Description

get Second Version

License

Open Source License

Declaration

public static String getSecondVersion(String buildId) 

Method Source Code

//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*/
}

Related

  1. getSecondsToHHMMSS(double seconds)
  2. getSecondsToMMSS(double seconds)
  3. getSecondTime()
  4. getSecondTime(String time)
  5. getSecondToLastIndexOf(String string, char character)
  6. getSYNTimeSeconds()
  7. getTextBeforeFirstAndSecondColumns(String s)
  8. getTimeAsSeconds(String value)
  9. GetTimeFromSeconds(double time)