js
999级
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
js对象属性
function createDocument(){ if(typeof arguments.callee.activeXString!="string"){ var versions=["MSXML2.DOMDocument.6.0","MSXML2.DOMDocument.3.0","MSXML2.DOMDocument"]原创 2014-06-07 16:02:12 · 764 阅读 · 0 评论 -
ExcelToSql
package com.cj.ExcelSql; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import jav原创 2014-11-25 13:48:24 · 750 阅读 · 0 评论 -
分析
如果读取的是合并单元格 1. 栈中没有元素,则该单元格为首个单元格,将id命名为01,superid为0,并且存入栈中。 2. 如果栈中有元素,则获取栈顶元素top top.col 则将current存入栈中,(id为top.id+”01”,superid为top.superid) top.col=current 则将top移除,获取新的top,current原创 2014-11-25 13:49:15 · 477 阅读 · 0 评论 -
CellRecord
package com.cj.ExcelSql; public class CellRecord { public String id; public String superid; public int col; public int childIndex=1; public String value; public CellR原创 2014-11-25 13:47:46 · 378 阅读 · 0 评论
分享