摘要: //主方法 public static String DateToCh(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date); int year = cal.get(Calendar.YEAR); int month = cal.get(Calendar.MONTH) + 1; ... 阅读全文
posted @ 2016-05-20 17:37 ambitionless 阅读(705) 评论(0) 推荐(0) 编辑
摘要: public static byte[] getImageFromNetByUrl(String strUrl){ try { URL url = new URL(strUrl); HttpURLConnection conn = (HttpURLConnection)url.openConnection(); ... 阅读全文
posted @ 2016-05-20 17:36 ambitionless 阅读(2197) 评论(0) 推荐(0) 编辑