Here you can find the source of month2second(int month)
public static int month2second(int month)
//package com.java2s; /*/* ww w.ja v a2s . co m*/ * Title: TRS ?????? * Copyright: Copyright (c) 2004-2005, TRS?????????????. All rights reserved. * License: see the license file. * Company: TRS?????????????(www.trs.com.cn) * * Created on 2005-5-11 */ public class Main { public static int month2second(int month) { return month * 30 * 24 * 3600; } }