- 浏览: 8613 次
最新评论
文章列表
使用Jacob读取数据的时候,数据也就8000左右,为什么会很慢呢?
求大牛指点下,谢谢
public static void main(String[] args) throws FileNotFoundException, IOException {
String filename="C:/text/1234.xlsx";
ComThread.InitSTA();
/**
* 声明变量
* */
String xuhao = "";
String xuhao1 ="";
String num ...
ContextLoader.getWebApplictionContext()
备忘一下
之前遇到一个需求,需要与当月所有日期关联。研究了一下, 做个笔记备忘
select trunc(sysdate,'mm') + rn - 1 from (
select rownum rn from all_objects where rownum <= trunc(to_char(last_day(sysdate),'dd'))
);
在做Hibernate 映射对象转换json 的时候 遇到如下异常
net.sf.json.JSONException: There is a cycle in the hierarchy!
at net.sf.json.util.CycleDetectionStrategy$StrictCycleDetectionStrategy.handleRepeatedReferenceAsObject(CycleDetectionStrategy.java:97)
at net.sf.json.JSONObject._fromBean(JSONObject.java:8 ...
<html>
<body onLoad="addfile()">
<TITLE>javascript向excel中添加数据</TITLE>
<SCRIPT LANGUAGE = JavaScript>
/**//*
使用javascript调用excel二次开发组件,向excel中添加数据
*/
function addfile(){
var exApp = new ActiveXObject("Excel.Application"); //创建实例
exApp.Visible=tru ...