java 位元組陣列取反

saii發表於2015-12-04

背景

最近在測試公司軟體的一個功能,它會讀取一個配置檔案資訊,但是配置檔案做了個加密處理,處理的方式就是所有的位元組都取反。這個是一個很簡單的功能,結果卻花了好一會兒 主要還是基礎太薄弱了,mark一下吧

實現

這裡就直接貼程式碼吧

    public static void main(String[] args) throws IOException {
        byte[] bytes = toByteArray("C:\\config.ini");

        byte temp;
        for(int i=0;i<bytes.length;i++){
            temp = bytes[i];
            bytes[i] = (byte) (~temp);
        }
        System.out.println(new String(bytes,"gbk"));

    }


    /**
     * the traditional io way
     * @param filename
     * @return
     * @throws IOException
     */
    public static byte[] toByteArray(String filename) throws IOException{

        File f = new File(filename);
        if(!f.exists()){
            throw new FileNotFoundException(filename);
        }

        ByteArrayOutputStream bos = new ByteArrayOutputStream((int)f.length());
        BufferedInputStream in = null;
        try{
            in = new BufferedInputStream(new FileInputStream(f));
            int buf_size = 1024;
            byte[] buffer = new byte[buf_size];
            int len = 0;
            while(-1 != (len = in.read(buffer,0,buf_size))){
                bos.write(buffer,0,len);
            }
            return bos.toByteArray();
        }catch (IOException e) {
            e.printStackTrace();
            throw e;
        }finally{
            try{
                in.close();
            }catch (IOException e) {
                e.printStackTrace();
            }
            bos.close();
        }
    }

我們這裡讀取的就是一個Config.ini檔案,接著需要讀取檔案的後獲取到它的byte陣列。取反的方法直接採用java自帶的~就可以了。結果還百度了半天,因為是用gbk編碼,所以說轉換成String型別的時候需要說明編碼型別,不然轉碼就是亂碼了。

相關文章