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