摘要: GZIP is appropriate for single data stream. Example: Compress one file public class Demo8 { public static void main(String[] args) throws Exception { 阅读全文
posted @ 2018-03-06 17:05 Chris,Cai 阅读(2235) 评论(0) 推荐(0)
摘要: Copying information from one file to another with 'BufferReader BufferWriter' public class Demo5 { public static void main(String[] args) { //data cac 阅读全文
posted @ 2018-03-06 09:38 Chris,Cai 阅读(287) 评论(0) 推荐(0)
摘要: FileInputStream is a stream to grab the information from files.Combined with FileOutputStream, we can achieve the function of copying. Examples: publi 阅读全文
posted @ 2018-03-06 09:30 Chris,Cai 阅读(174) 评论(0) 推荐(0)