- 浏览: 35588 次
- 性别:
- 来自: 北京
-
最新评论
-
haoxinren:
运行完后6.5的 不能提示不可用呀
myEclipseGen.java
文章列表
java解析excel
- 博客分类:
- 原创
对xls格式的文件进行解析。使用jxl.jar。
此外还需要用到的jar包有:
commons-fileupload-1.2.1.jar
commons-io-1.4.jar
后台获取代码:写道
List fileList=null;DiskFileItemFactory fac= new DiskFileItemFactory ();ServletFileUpload upload= new ServletFileUpload (fac);try{fileList=upload.parseRequest(req);}catch(FileUploadException ex ...
最近开发统一身份认证系统。使用spring mvc+hibernate+jquery,学习了很多东西。。。。
我负责系统中的权限管理模块,哈哈,比着原系统做的。一步步来,这下是忘不了了。
前台jquery,用了不少插件,有jqgrid,ztree,uploadify。上手还是蛮快的。
写道
toFreshAuto=function(node)
{
var tree=node.getOwnerTree();
loader.load(node,function(){
node.expand(true,true);
})
var nodeparent=node.parentNode;
nodeparent.on("expand",function(pnode){
tree.getNodeById(node.id).select();},this,{
single:true
});
node.parent ...
记录下来,方便以后再用~·
servlet中图片存入:
public void SaveDeliveryReceipt(HttpServletRequest req,HttpServletResponse resp)throws ServletException, IOException {
String strAdmin = (String) req.getSession().getAttribute("isAdmin");
boolean isAdmin = "1".equals(strAdmin);
Long op_id = ...