Here you can find the source of setStatis_month(String year_month)
Parameter | Description |
---|---|
statis_month | the statis_month to set |
public static void setStatis_month(String year_month)
//package com.java2s; /******************************************************************************* * @FileName: ExcelHelper.java 2013-7-18 ????10:05:08 * @Author: zhangzhia//from w ww . j av a2 s .co m * @Copyright: 2013 YUTONG Group CLW. All rights reserved. * @Remarks: YUTONG PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. *******************************************************************************/ public class Main { private static String statis_month = ""; /** * @param statis_month the statis_month to set */ public static void setStatis_month(String year_month) { statis_month = year_month.substring(year_month.length() - 2); } }