最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

處理流的封裝代碼

2020-04-05 14:12 作者:小垃圾kiki  | 我要投稿
package cn.jd.io;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;

/*
?* 隨機讀取和寫入流RandomAccessFile
?*
?*/
public class RandTest04 {
?? ?public static void main(String[] args) throws IOException {
?? ??? ?//分多少塊?? 首先給一個需要分塊的文件
?? ??? ?File src=new File("src/cn/jd/io/Copy.java");
?? ??? ?//文件的總長度
?? ??? ?long? len=src.length();
//?? ??? ?System.out.println(len);
?? ??? ?//每塊大小
?? ??? ?int? blockSize=1024;
?? ??? ?//分多少塊
?? ??? ?int size=(int)Math.ceil(len*1.0/blockSize);//向上取整的意思就是3.5變成4
//?? ??? ?double a=6.0;
//?? ??? ?int b=4;
//?? ??? ?System.out.println(a/b);
?? ??? ?//思路每一塊從哪里開始到哪里結(jié)束
?? ??? ?int beginPos=0;
?? ??? ?int actualSize=(int)(blockSize>len?len:blockSize);? //如果blockSize大于len,那么就選len的長度
?? ??? ?for(int i=0;i<size;i++) {
?? ??? ??? ?beginPos=i*blockSize;
?? ??? ??? ?if(i==size-1) {//最后一塊
?? ??? ??? ??? ?actualSize=(int)len;
?? ??? ??? ?}else {
?? ??? ??? ??? ?actualSize=blockSize;
?? ??? ??? ??? ?len-=actualSize;//剩余長度
?? ??? ??? ?}
?? ??? ??? ?System.out.println(i+"-->"+beginPos+"-->"+actualSize);
?? ??? ??? ?test2(i,beginPos,actualSize);//里面的參數(shù)一定要和下面的方法對應(yīng),出現(xiàn)問題就debug調(diào)試一下
?? ??? ?}
?? ??? ?
?? ??? ?
?? ??? ?
?? ?}
?? ?
?? ?//分塊思想:有了起始索引,有了實際大小
?? ?//指定第i塊的起始位置和實際長度
?? ?public static void test2(int i,int beginPos,int actualSize) throws IOException {
?? ??? ?RandomAccessFile? raf=new RandomAccessFile(new File("src/cn/jd/io/Copy.java"), "r");
?? ??? ?//加入寫出模式
?? ??? ?RandomAccessFile? raf2=new RandomAccessFile(new File("dest/"+i+"Copy.java"), "rw");
//?? ??? ?//起始位置
//?? ??? ?int beginPos=2;
//?? ??? ?//實際大小
//?? ??? ?int actualSize=1026;//我要讀取1026個字節(jié)
//?? ??? ?//隨機讀取
?? ??? ?raf.seek(beginPos); //從第二個索引開始讀取,記住索引是從0開始的
?? ??? ?//讀取??? 讀取方式和字節(jié)流的讀取方式是一樣的
?? ??? ?byte[]? flush=new byte[1024];
?? ??? ?int len=-1;
?? ??? ?while((len=raf.read(flush))!=-1) {
?? ??? ??? ?
?? ??? ??? ?if(len<=actualSize) {//獲取本次讀取的所有內(nèi)容
//?? ??? ??? ??? ?System.out.println(new String(flush,0,len));
?? ??? ??? ??? ?raf2.write(flush,0,len);
//?? ??? ??? ??? ?actualSize-=len;//還剩余多少字節(jié)需要下次讀取
?? ??? ??? ??? ?break;
?? ??? ??? ?}else {
//?? ??? ??? ??? ?System.out.println(new String(flush,0,actualSize));
?? ??? ??? ??? ?raf2.write(flush,0,actualSize);
?? ??? ??? ??? ?break;
?? ??? ??? ?}
?? ??? ?}
?? ??? ?
?? ??? ?raf2.close();
?? ??? ?raf.close();
?? ?}

}

處理流的封裝代碼的評論 (共 條)

分享到微博請遵守國家法律
贵阳市| 镇原县| 习水县| 墨脱县| 镇赉县| 鹿邑县| 石屏县| 迁西县| 泊头市| 长兴县| 栖霞市| 招远市| 铁力市| 漳州市| 舒兰市| 苏尼特右旗| 北辰区| 新闻| 皋兰县| 巴马| 嘉黎县| 叙永县| 鄢陵县| 交城县| 千阳县| 高青县| 康保县| 巨野县| 朔州市| 加查县| 长岛县| 苍梧县| 游戏| 鸡泽县| 本溪| 保定市| 建平县| 红原县| 宁河县| 裕民县| 多伦县|