91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎樣讀取本地二進制文件到String字符串中

發布時間:2021-10-19 16:00:39 來源:億速云 閱讀:117 作者:柒染 欄目:大數據

本篇文章為大家展示了怎樣讀取本地二進制文件到String字符串中,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

注意:本工具類就是只能讀取本地的<二進制>文件。

import java.io.*;

/**
 * 文件操作工具類
 *
 * @author edison_kwok
 */
public class FileUtils {

    /**
     * 本地文件重命名
     *
     * @param file
     * @param newName
     */
    public static void rename(File file, String newName) {
        if (file.exists()) {
            String absolutePath = file.getAbsolutePath();
            String path = absolutePath.substring(0, absolutePath.lastIndexOf("\\") + 1);
            file.renameTo(new File(path + newName));
        }
    }

    /**
     * 功能:Java讀取txt文件的內容
     * 步驟:1:先獲得文件句柄
     * 2:獲得文件句柄當做是輸入一個字節碼流,需要對這個輸入流進行讀取
     * 3:讀取到輸入流后,需要讀取生成字節流
     * 4:一行一行的輸出。readline()。
     * 備注:需要考慮的是異常情況
     *
     * @param filePath
     */
    public static String readFile(String filePath) {
        InputStreamReader read = null;
        BufferedReader bufferedReader = null;
        String lineTxt = null;
        try {
            String encoding = "UTF-8";
            File file = new File(filePath);
            //判斷文件是否存在
            if (file.isFile() && file.exists()) {
                //考慮到編碼格式
                read = new InputStreamReader(new FileInputStream(file), encoding);
                bufferedReader = new BufferedReader(read);
                StringBuilder stringBuilder = new StringBuilder();
                while ((lineTxt = bufferedReader.readLine()) != null) {
                    stringBuilder.append(lineTxt);
                }
                return stringBuilder.toString();
            } else {
                throw new RuntimeException("該文件不存在");
            }
        } catch (Exception e) {
            throw new RuntimeException(e.getMessage());
        } finally {
            try {
                if (bufferedReader != null) {
                    bufferedReader.close();
                }
                if (read != null) {
                    read.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }

        }
    }

    /**
     * 輸出流導出本地文件
     *
     * @param is
     * @param os
     * @throws Exception
     */
    public static void fileUpload(InputStream is, OutputStream os) throws Exception {
        byte[] b = new byte[2048];
        int length = 0;
        while (true) {
            length = is.read(b);
            if (length < 0) break;
            os.write(b, 0, length);
        }
        is.close();
        os.close();
    }

}

上述內容就是怎樣讀取本地二進制文件到String字符串中,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

盐津县| 平远县| 龙州县| 恩施市| 工布江达县| 绥化市| 永兴县| 商丘市| 新野县| 榕江县| 新干县| 怀来县| 拉萨市| 马尔康县| 博湖县| 辰溪县| 中江县| 奈曼旗| 肥乡县| 通州区| 偃师市| 土默特右旗| 乌恰县| 乌审旗| 阿尔山市| 林周县| 绥江县| 托里县| 灵台县| 玛曲县| 丰原市| 商洛市| 巴南区| 龙南县| 土默特右旗| 武乡县| 甘孜县| 奎屯市| 普宁市| 灯塔市| 临夏市|