自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 springboot 多文件压缩下载(流)

zip工具类: /** * 把文件打成压缩包并输出到客户端浏览器中 */ public static void downloadZipFiles(HttpServletResponse response, List<String> srcFiles, String zipFileName) { try ...

2020-01-19 14:59:30 6010 8

原创 Git实用操作命令

git 命令$ cat file 查看文件内容 $ git config --global user.name "Your Name" $ git config --global user.email "email@example.com" git init 把目录s变成Git可以管理的仓库 git add./<文件名> 由工作区添加到暂存区 git commit -m ...

2019-07-11 11:51:05 151 1

原创 根据网路路径下载文件

根据网路路径下载文件工具类 /** * 从网络Url中下载文件 * * @param urlStr url路径 * @param fileName 文件名 * @param savePath 保存地址 * @throws IOException */ public static String downLoadFromUrl(String urlStr...

2019-06-22 03:02:31 286

原创 webserver接口调用(二)

webserver接口调用(二)package com.axun.common.utils;import javax.xml.rpc.ParameterMode;import org.apache.axis.client.Call;import org.apache.axis.client.Service;import org.apache.axis.encoding.XMLTy...

2019-06-22 02:58:02 597

原创 webserver接口调用(一)

webserver接口调用package com.axun.common.utils;import javax.xml.rpc.ParameterMode;import org.apache.axis.client.Call;import org.apache.axis.client.Service;import org.apache.axis.encoding.XMLType;...

2019-06-22 00:52:52 4232

原创 struts框架

struts包结构及说明src-src包下注意点action包为控制层,相当于controller1.需要继承 DispatchActionSupport2.声明注解 3.需要在action-servlet.xml文件中配置(如下图)4.运行ant工具下build.xml文件,该操作会在struts-config.xml下生成映射dao层为数据库访问层实现类需...

2019-04-26 18:10:34 187

原创 统计表的中运用的sql(多表、MySQL)

统计表的中运用的sql(多表、MySQL)业务需求sql代码运行结果相关了解sum(if) & case whensumcase when业务需求查询每一个项目下本周、本月、全年的人次数和收入(项目列表不固定)sql代码SELECT hc.name,sum(if(YEARWEEK(DATE_FORMAT(FINISH_TIME,'%Y-%m-%d')) = YEARWEEK...

2019-04-26 00:25:12 355

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除