2017年6月15日 随笔档案 -凯发k8网页登录

天平山上白云泉,云自无心水自闲。何必奔冲山下去,更添波浪向人间!
posts - 288, comments - 524, trackbacks - 0, articles - 6
  凯发k8网页登录-凯发天生赢家一触即发官网 :: 凯发k8网页登录首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

2017年6月15日

1. java zip 多个文件时,如果先添加了一个excel文件,然后再想添加其他的文件时会出现 steam is closed的错误。这是因为work.write(outputsteam)后,出调用outputsteam.close(),关闭输出流。
解决方法:
将原来的程序:
            zipentry entry = new zipentry( "file3.txt" );
            zos.putnextentry( entry );
            workbook.write( zos );
            zos.closeentry();
改为:
            zipentry entry = new zipentry( "file3.txt" );
            zos.putnextentry( entry );
            workbook.write( new noncloseableoutputstream( zos ) );
            zos.closeentry();

其中 noncloseableoutputstream 定义如下:
public class noncloseableoutputstream extends java.io.filteroutputstream {
    public noncloseableoutputstream(outputstream out) {
        super(out);
    }
    @override public void close() throws ioexception {
        flush();
    }
}



2. 使用binary使得mysql区分大小写
select * from table1 where binary field1 = 'abc';

posted @ 2017-08-09 19:52 云自无心水自闲 阅读(315) | 评论 (0)编辑 收藏

https://notepad-plus-plus.org/community/topic/13661/plugin-manager-x64-available-submit-your-plugins

posted @ 2017-06-26 09:33 云自无心水自闲 阅读(316) | 评论 (0)编辑 收藏

move git server to a new ip/url:

you can just edit 
.git/config and change the urls there

也可以在git视图中,右键点击项目,选择属性,然后修改url中的地址

posted @ 2017-06-15 08:40 云自无心水自闲 阅读(254) | 评论 (0)编辑 收藏

网站地图