close

[功能集锦] 001 - java下载文件

吃可爱长大的小学妹 提交于 2019-12-18 16:40:09
@RequestMapping("/downloadxls.action") public void downloadxls(HttpServletRequest request, HttpServletResponse response) { //获取请求参数 Map<String, Object> params = ParamsUtil.getParams(request); String contextPath = request.getSession().getServletContext().getRealPath(File.separator + "report"); String excelName = xxxxx; String excelFullName = contextPath + File.separator + excelName + ".xls"; InputStream inStream = null, fileInStream = null; ServletOutputStream outStream = null; int byteRead; try { fileInStream = new FileInputStream(excelFullName); inStream = new BufferedInputStream(fileInStream

io 流demo

﹥>﹥吖頭↗ 提交于 2019-12-18 03:38:18
/* * 需求:作业:将c盘的一个文本文件复制到d盘。 * * 思路: * 1,需要读取源, * 2,将读到的源数据写入到目的地。 * 3,既然是操作文本数据,使用字符流。 * */ public class CopyTextTest { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { //1,读取一个已有的文本文件,使用字符读取流和文件相关联。 FileReader fr = new FileReader("IO流_2.txt"); //2,创建一个目的,用于存储读到数据。 FileWriter fw = new FileWriter("copytext_1.txt"); //3,频繁的读写操作。 int ch = 0; while((ch=fr.read())!=-1){ fw.write(ch); } //4,关闭流资源。 fw.close(); fr.close(); } } public class CopyTextTest_2 { private static final int BUFFER_SIZE = 1024; /** * @param args */ public static void main

redis 序列化 工具类SerializeUtil.java

跟風遠走 提交于 2019-12-12 12:14:31
package com.lz.art.util; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.Closeable; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.util.ArrayList; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** 序列化对象工具类,用于保存和读取redis数据使用 Function: Date: 2017年5月16日 */ public class SerializeUtil { private static Logger log = LoggerFactory.getLogger(SerializeUtil.class); /** 序列化对象 @param object @return */ public static byte[] serialize(Object object) { ObjectOutputStream oos

day08 文件操作

浪尽此生 提交于 2019-12-04 15:46:02
day08 文件操作 一.文件操作 1.文件操作的函数 open(文件名, mode=模式, encoding=字符集) 2.模式: r, w, a, r+, w+, a+, rb, wb, ab, r+b, w+b, a+b r: read() f = open('num.py', mode='r', encoding='utf-8') print(f.read(3)) #代表读 3 个字符, 单个英文是一个字符, 单个汉字也是一个字符 print(f.read()) # 读, 所有, 大文件不行,要考虑到内存 f.close() r: readline() f = open('num.py', mode='r', encoding='utf-8') print(f.readline(),end='\n') #一次读一行, 光标随之移动 print(f.readline(),end='\n') #print()函数有个换行, 而且readline()也会把文本中的换行符读出来 print(f.readline().strip(),end='\n') #去掉一个换行,去掉 readline()的, 原文中的空行打印不出来 print(f.readline(),end='') #去掉一个换行, 去掉 print() 的 f.close() r: while f = open('num

matlab的clc,close,close all,clear,clear all命令

情到浓时终转凉″ 提交于 2019-12-03 15:27:10
clc:清除命令窗口的内容,对工作环境中的全部变量无任何影响 close:关闭当前的Figure窗口 close all:关闭所有的Figure窗口 clear:清除工作空间的所有变量 clear all:清除工作空间的所有变量,函数,和MEX文件 来源: https://www.cnblogs.com/yibeimingyue/p/11802276.html

How can i close a bootstrap-popover with a button inside the popover?

匿名 (未验证) 提交于 2019-12-03 08:41:19
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have made a jsFiddle where i use twitter bootstrap popover function on an icon. <div style="margin-top:200px"> <ul> <li class="in-row"> <a href="#" id="meddelanden" data-title="Meddelanden" data-toggle="clickover" data-placement="right"><i class="icon-globe"></i></a> </li> </ul> </div> jquery: var elem = '<div class="well"><a href="google.com">Message one, From someone.</a></div>'+ '<div class="well"><a href="google.com">Message one, From someone.</a></div>'+ '<button id="close-popover" class="btn btn-small btn-primary pull-right">Close

转盘抽奖的实现

夙愿已清 提交于 2019-12-03 08:09:42
如图效果展示:(因最近双十一,公司需求要给新老客服抽奖发福利,临时写的) 核心代码: async rotating() { var type = 0; // 默认为 0 转盘转动 1 箭头和转盘都转动(暂且遗留) var during_time = 5; // 默认为1s var result_index = this.index-1; // 最终要旋转到哪一块,对应prize_list的下标 var result_angle = [190 ,139 ,88 ,37 ,-14,-65 ,-116] //这里是指定位置 var rand_circle = 6; // 附加多转几圈,2-3 var rotate_angle = 0; this.count++ if (type == 0) { // 转动盘子 var rateround=rand_circle * 360 + result_angle[result_index] //这里是(转盘算法) rateround是转动的距离 this.start_rtating是每次初始化转盘的位置 rotate_angle =this.start_rotating_degree + rateround -this.start_rotating_degree % 360 ; this.start_rotating_degree = rotate

What is the proper way to close H2?

匿名 (未验证) 提交于 2019-12-03 01:47:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: This is related to this post . I think I am having problem with H2 meaning that it does not close properly. I suspect this since I see myDB.lock.db when I shutdown tomcat and the process does not stop. I use Tomcat's connection pooling and the url to the database is: url="jdbc:h2:file:/opt/myOrg/tomcat/webapps/MyApplication/db/myDatabase;SCHEMA=myschema" From the doc close H2 : Usually, a database is closed when the last connection to it is closed.... By default, a database is closed when the last connection is closed. However, if