上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 32 下一页
摘要: 1 package com.ytd.ebos.platform.util; 2 3 import java.util.Iterator; 4 5 import net.sf.json.JSONArray; 6 import net.sf.json.JSONObject; 7 8 /** 9 * @a 阅读全文
posted @ 2020-04-30 09:28 爱跳舞的程序员 阅读(2116) 评论(0) 推荐(0)
摘要: 文章转自https://www.cnblogs.com/ikoo4396/p/8214110.html 个人小结: 1,put 如果put的值为空,则删除这个属性,已有相同可以则替换值 2,accumulate追加值,最终值会变成数组的形式,accumulate可以将值变为null,而不删除该key 阅读全文
posted @ 2020-04-29 16:25 爱跳舞的程序员 阅读(461) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2020-03-24 10:48 爱跳舞的程序员 阅读(4) 评论(0) 推荐(0)
摘要: function generateColor() { var cNumR = Math.random()*255; var cNumG = Math.random()*255; var cNumB = Math.random()*255; var color = "rgb("+cNumR+","+c 阅读全文
posted @ 2020-03-18 17:56 爱跳舞的程序员 阅读(376) 评论(0) 推荐(0)
摘要: 本文摘自 http://www.xwood.net/_site_domain_/_root/5870/5874/t_c277906.html import java.sql.Connection; import java.sql.PreparedStatement; import java.sql. 阅读全文
posted @ 2020-03-18 14:19 爱跳舞的程序员 阅读(442) 评论(0) 推荐(0)
摘要: --主表语句CREATE TABLE ZDJS.crd_main_tab ( ID_ VARCHAR2(128) NOT NULL ENABLE, STATION_NAME_ VARCHAR2(128), CREATE_TIME_ DATE, CHECK (ID_ IS NOT NULL) ENAB 阅读全文
posted @ 2020-02-25 14:26 爱跳舞的程序员 阅读(1216) 评论(0) 推荐(0)
摘要: import java.io.File; import org.apache.tools.ant.taskdefs.Mkdir; import org.eclipse.jdt.core.dom.ThisExpression; /** * @Author chenrd * @Date 2019-10- 阅读全文
posted @ 2019-10-25 11:58 爱跳舞的程序员 阅读(188) 评论(0) 推荐(0)
摘要: 有中文参数的get请求容易乱码,固要给参数加密 var url =“http://localhost:8080/admin/list.htm?zm=哈哈”; var urls = url.split("=");// alert("urls[0]=="+urls[0]);// alert("urls[ 阅读全文
posted @ 2019-10-24 15:21 爱跳舞的程序员 阅读(132) 评论(0) 推荐(0)
摘要: 建表空间、用户、授权等 1创建表空间create tablespace yjzdjs_data datafile 'F:\oracle_data\yjzdjs_data.dbf' size 500M autoextend on next 50M maxsize unlimited; --2创建用户c 阅读全文
posted @ 2019-10-23 10:25 爱跳舞的程序员 阅读(285) 评论(0) 推荐(0)
摘要: --查看oracle版本(11.2.0.1.0) SELECT VERSION FROM V$INSTANCE; --查看表空间以及大小 select tablespace_name, sum(bytes)/1024/1024,t.* from dba_data_files t group by t 阅读全文
posted @ 2019-10-14 17:39 爱跳舞的程序员 阅读(348) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 32 下一页