上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: Date now = new Date(); SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以方便地修改日期格式 String stroldnow = dateFormat.format( n 阅读全文
posted @ 2016-10-14 10:52 Kevin_Zhou_9 阅读(2749) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-09-07 19:16 Kevin_Zhou_9 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 我们在做web开发是,经常都要在eclipse中搭建web服务器,并将开发中的web项目部署到web服务器进行调试,在此,我选择的是tomcat服务器。之前部署web项目到tomcat进行启动调试都很正常,今天突然出现无法启动情况,启动过程报如下错误: java.lang.ClassNotFound 阅读全文
posted @ 2016-09-01 21:35 Kevin_Zhou_9 阅读(1122) 评论(0) 推荐(0) 编辑
摘要: 1.先安装JDK2.再安装tomcat,Tomcat需要JDK支持3.安装eclipse开发工具,接着整合tomcat与jdk到eclipse上(先加tomcat到server再指定的jdk到tomcat) 变量名:【JAVA_HOME】变量值:【C:\Program Files\Java\jdk1 阅读全文
posted @ 2016-07-28 09:47 Kevin_Zhou_9 阅读(186) 评论(0) 推荐(0) 编辑
摘要: package com.xuyw.wx.util;import java.io.BufferedReader;import java.io.DataOutputStream;import java.io.IOException;import java.io.InputStreamReader;imp 阅读全文
posted @ 2016-07-28 09:46 Kevin_Zhou_9 阅读(324) 评论(0) 推荐(0) 编辑
摘要: package com.xuyw.wx.util;import net.sf.json.JSONObject;import com.xuyw.wx.config.Config;/** * 百度工具类 ** @author xuyw * @email xyw10000@163.com * @date 阅读全文
posted @ 2016-07-28 09:45 Kevin_Zhou_9 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: List 阅读全文
posted @ 2016-07-06 21:23 Kevin_Zhou_9 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 插入整数 阿里云db.app_config.update({"name":"goldingot"},{$set:{"number"NumberInt(10)}}) 本地db.getCollection('app_config').insert({ name:"goldingot", number:1 阅读全文
posted @ 2016-06-20 19:59 Kevin_Zhou_9 阅读(194) 评论(0) 推荐(0) 编辑
摘要: int intTime=Integer.valueOf(time); int h=intTime/3600; int m=(intTime%3600)/60; int s=(intTime%3600)%60; 阅读全文
posted @ 2016-06-07 19:09 Kevin_Zhou_9 阅读(722) 评论(0) 推荐(0) 编辑
摘要: /** * 将Json对象转换成Map * * @param jsonObject * json对象 * @return Map对象 * @throws JSONException */ public static Map toMap(String jsonString) throws JSONEx 阅读全文
posted @ 2016-06-02 21:54 Kevin_Zhou_9 阅读(1047) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页