摘要: drop table test;create table test(name varchar(20),kemu varchar(20),score number);insert into test values('testa','yuwen',10);insert into test values(... 阅读全文
posted @ 2015-12-31 17:24 java高级技术汇 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 本文讲述Oracle分析函数用法,首先建库:Sql代码createtableearnings--打工赚钱表(earnmonthvarchar2(6),--打工月份areavarchar2(20),--打工地区snovarchar2(10),--打工者编号snamevarchar2(20),--打工者... 阅读全文
posted @ 2015-12-31 15:53 java高级技术汇 阅读(194) 评论(0) 推荐(0) 编辑
摘要: createtablestudentInfo(idnumber(8)primarykey,namevarchar2(20)notnull,ObjectNamevarchar2(20)notnull,fenshuvarchar2(2)notnull);insertintostudentInfovalu... 阅读全文
posted @ 2015-12-31 15:48 java高级技术汇 阅读(318) 评论(0) 推荐(0) 编辑
摘要: package demo.mytest;import java.lang.ref.SoftReference;import java.lang.ref.WeakReference;import java.util.ArrayList;import java.util.HashMap;import j... 阅读全文
posted @ 2015-12-31 09:52 java高级技术汇 阅读(225) 评论(0) 推荐(0) 编辑
摘要: package demo.mytest;import java.text.ParseException;import org.quartz.CronTrigger;import org.quartz.Job;import org.quartz.JobDetail;import org.quartz.... 阅读全文
posted @ 2015-12-31 09:50 java高级技术汇 阅读(815) 评论(0) 推荐(0) 编辑
摘要: package demo.mytest;import java.io.Serializable;import java.util.LinkedHashMap;import java.util.concurrent.locks.Lock;import java.util.concurrent.lock... 阅读全文
posted @ 2015-12-31 09:49 java高级技术汇 阅读(148) 评论(0) 推荐(0) 编辑
摘要: package demo.mytest;import java.math.BigDecimal;/** * 浮点数的精确计算... * @author Administrator * */public class Arith { //默认除法运算精度 private static final ... 阅读全文
posted @ 2015-12-31 09:48 java高级技术汇 阅读(141) 评论(0) 推荐(0) 编辑
摘要: package demo.annotation;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import ja... 阅读全文
posted @ 2015-12-31 09:45 java高级技术汇 阅读(439) 评论(0) 推荐(0) 编辑
摘要: package test.lucene;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.IOException;import java.io.InputSt... 阅读全文
posted @ 2015-12-31 09:41 java高级技术汇 阅读(232) 评论(0) 推荐(0) 编辑
摘要: package test;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputSt... 阅读全文
posted @ 2015-12-31 09:39 java高级技术汇 阅读(260) 评论(0) 推荐(0) 编辑
摘要: package test;import java.util.List;import net.sf.json.JSONObject;import org.apache.http.HttpEntity;import org.apache.http.HttpResponse;import org.apac... 阅读全文
posted @ 2015-12-31 09:36 java高级技术汇 阅读(151) 评论(0) 推荐(0) 编辑
摘要: public class MongoManager { private static final String MONGO_DBNAME="local"; private static final String COLLECTION_NAME="person"; private Mongo mong... 阅读全文
posted @ 2015-12-31 09:34 java高级技术汇 阅读(211) 评论(0) 推荐(0) 编辑
摘要: OutputStream outp = null; try { outp = response.getOutputStream(); A service=new A(); service.downFile(out... 阅读全文
posted @ 2015-12-31 09:31 java高级技术汇 阅读(170) 评论(0) 推荐(0) 编辑