I'm trying to create a new project using the IT Service Management project template, but it's making me select a team to proceed. I created a team but it's not showing up as an option to select. Also I need this team to be private. Any advice?
Hi,
You could devise a formula of your own to convert that.
For e.g, the following function:
public void convertor (int milliseconds){
int milli = milliseconds;
long secs = milli / 1000;
long mins = secs / 60;
long hours = mins / 60;
long days = hours / 24;
String time = days + "d " + hours % 24 + "h " + mins % 60 + "m " + secs % 60 + "s";
System.out.println(time);
}
And pass in the milliseconds in the function to get respective days/hours/minutes etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.