下面内容摘自互联网并作了整理。名词:BI(Business
Intelligence):商业智能,DW(Data Warehouse):数据仓库,详见正文Q1部分。OLTP(On-Line Transaction
Processing):联机事务处理也称为面向交易的处理系统,其基本特征是顾客的原始数...
分类:
其他好文 时间:
2014-06-07 05:32:53
阅读次数:
263
1、错误描述
五月 28, 2014 10:32:40 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression student.course is undefined on line 16, column 25 in course.ftl."
Expres...
分类:
其他好文 时间:
2014-06-05 09:14:11
阅读次数:
185
1、错误描述
五月 28, 2014 9:56:48 下午 freemarker.log.JDK14LoggerFactory$JDK14Logger error
严重: Template processing error: "Expression student.course is undefined on line 15, column 24 in course.ftl."
Express...
分类:
其他好文 时间:
2014-06-05 07:35:59
阅读次数:
348
Gold processing methods currently used, first
gold ore crusher by gold crushing and milling equipment by gold crushed, and
then grading machine, mixin...
分类:
其他好文 时间:
2014-06-03 07:25:37
阅读次数:
262
Plaster Processing Plant is key crushing
equipment used to crush the large Plaster ore into small particles. We are a
major plaster crusher manufactur...
分类:
其他好文 时间:
2014-05-31 15:52:02
阅读次数:
237
1 综述Separating touching objects in an image is one
of the more difficult image processing operations. The watershed transform is
often applied to this...
分类:
其他好文 时间:
2014-05-22 04:27:23
阅读次数:
497
TestSax类:
package day06_parser.sax;
/**
* xml的解析技术:JAXP是Java API for XML Processing的英文字头缩写,
* 中文含义是:用于XML文档处理的使用Java语言编写的编程接口。JAXP支持DOM、SAX、XSLT等标准。
* 下面我们研究两种解析方式:
* 1.dom解析 2.sax解析:Simple API f...
分类:
其他好文 时间:
2014-05-15 08:13:40
阅读次数:
255
package day06_parser.dom;
/**
* xml的解析技术:JAXP是Java API for XML Processing的英文字头缩写,
* 中文含义是:用于XML文档处理的使用Java语言编写的编程接口。JAXP支持DOM、SAX、XSLT等标准。
* 下面我们研究两种解析方式:
* 1.dom解析 2.sax解析:Simple API for XML
* 下...
分类:
其他好文 时间:
2014-05-15 08:10:51
阅读次数:
351
final JLabel j1=new JLabel("测试");
JButton jb=new JButton("测试事件监听");
jb.addMouseListener(new MouseAdapter(){
public void mousePressed(MouseEvent e){
j1.setText("鼠标按下");/j1必须用final修饰。
}
});...
分类:
编程语言 时间:
2014-05-15 06:33:25
阅读次数:
397
//Processing date
struct tm time;
std::string date;
char dateBuff[128] = {0};
time.tm_year = atoi(md_date.getString().substr(0,4).c_str()) - 1900;
time.tm_mon = atoi(md_date.getString().subs...
分类:
其他好文 时间:
2014-05-14 21:52:15
阅读次数:
248