- 浏览: 20874 次
- 性别:
- 来自: 上海
最新评论
-
zhongxiaweimian:
今天也遇到了,删掉网站重新部署项目也行了
java.lang.ClassNotFoundException: net.sf.json.JSONArray错误。
文章列表
/**
* @Title: unZipFile
* @Description: 解压ZIP文件
* @author LuRh
* @param @param zipFile
* @param @param descDir
* @param @return
* @param @throws IOException
* @return boolean
* @throws
*/
@SuppressWarnings("rawtypes")
p ...
/**
* java读取文件中的指定内容
*
* @author 百度名称:文库帮助中心 QQ: 126 93 266 群: 160 973 354 菜鸟讨论
* @param args
* @throws Exception
* @since 0.1_Jun 7, 2013
*/
public static void main(String[] args) {
try { ...
Java解析JSON获取某个值
- 博客分类:
- JSON
/**
* 获取某JSON值
*
* @author QQ: 126 93 266
* @param args
* @since 0.1_Jun 9, 2013
*/
public static void main(String[] args) {
String json = "[{\"OnLineGap\":\"60000\"}]";
JSONArray array = JSONArray.fromObject(json);
JSONObject jsonObject = ...
/**
* Java 汉字转换为拼音
*
* @author 我自是年少,韶华倾负。
* @since 0.1_2012-12-27
*/
public class CharacterParser {
private static int[] pyvalue = new int[] {-20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -20242, -20230, -20051, -20036, -20032,
-20026, -20002, -19990, -19986, -1 ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> JS获取该月的天数 </title>
<meta name="Generator" content="EditPlus">
<meta name="Auth ...
public static String getClientIp(HttpServletRequest request) {
String ip = null;
// 先从X-Forwarded-For中取得第一不是unknown的IP作为客户端的真实IP
String proxyIpHeader = request.getHeader("X-Forwarded-For");
if (proxyIpHeader != null && proxyIpHeader.length() != 0) {
String[] ip ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; chars ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; chars ...
linux修改profile文件后保存方法:
按esc键,在:后面输入wq,然后回车。
使用Eclipse,做JSONDemo不断报:java.lang.ClassNotFoundException:
net.sf.json.JSONArray错误,找了很久,终于找到了。
原因是由于试用Eclipse的Build Path导入JSON需要用的Jar,发现这样不行。
解决办法:手动将需要的Jar拷贝到lib目录下。
话说这个错误很蛋疼:
以前一直用Myeclipse做开发,现在换成了Eclipse,下午用Struts2做Demo,一直
报这个错误,原因是用Build Path导入Jar,这个Eclipse好像不识别。
解决办法:手动将Jar拷贝到Lib下。
Linux修改当前系统时间分为两步,使用命令date -s :
1.修改当前日期命令为:date -s 05/15/2012 (将当前日期修改为:2012年05月16日)
2.修改当前时间命令为:date -s 13:00 (将当前时间修改为下午1点)
工作日固定数据:
按照法律规定,每月工作时间为20.83天,月计薪天数为21.75天,全年制度工作时间为250天,全年节假日及公休日为115天。
计算方法:
每月工作时间 20.83=(365-104-11)÷12;月计薪天数 21.75=(365-104)÷12);全年制度工作时间 250=365-104-11;全年节假日及公休日 115=104+11 。
日工资计算方法:
日工资=月工资收入÷21.75(用于有缺勤,工作未满一个月等情况下的工资计算)。
小时工资计算方法:
小时工资=月工资收入÷(21.75×8)。
节假日、公休日加班费计算:
节假日加班三薪(月工资 ...