日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

原因:最近在用Sqlite存儲數據,因涉及數據安全,所以需要數據庫加密,Sqlite庫默認不帶加密功能 目前已知的對 SQLite 加密的工具主要有「[SQLite Encryption Extension (SEE)]、[SQLiteEncrypt]、[SQLiteCrypt]、[SQLCipher],但是這里面僅有 SQLCipher 有免費版本。 所以自己有個方案,針對Sqlite無法就是限制不能直接查看,那就對文件進行加密,需要連接的時候進行文件解密就可以了,如果大神有更好的解決方案,請告知,謝謝!


package com.ts.tools;

import cn.hutool.core.io.FileUtil;

import cn.hutool.core.io.IoUtil;

import cn.hutool.crypto.symmetric.SymmetricAlgorithm;

import cn.hutool.crypto.symmetric.SymmetricCrypto;

import JAVA.io.*;

/** 加密解密文件

* @author xhc

* @version 1.0.0

* @date 2022-10-31

*/

public class FileEnDe {

public static void main(String[] args) {

try {

//加密密碼

String key="abcdefghijklmnop";

//FileEnDe.encryptFile("D:/test.db",key,true);

//FileEnDe.decryptFile("D:/test.db",key);

System.out.println(FileEnDe.isLocked("D:/sysDb.db"));

} catch (Exception e) {

throw new RuntimeException(e);

}

}

/**

* 加密db文件(理論可以加密任何文件)

* @param filePath 文件路徑

* @param key16 加密密碼(必須16位)

* @return boolean

* @throws Exception

*/

public static boolean encryptFile(String filePath,String key16,boolean isReadOnly){

FileOutputStream fos =null;

boolean bFlag=false;

try {

if(FileUtil.exist(filePath)) {

byte[] key = key16.getBytes();

//取文件名稱含后綴

String fileName=FileUtil.getName(filePath);

//加密文件

SymmetricCrypto aes = new SymmetricCrypto(SymmetricAlgorithm.AES, key);

FileInputStream fis = new FileInputStream(filePath);

String newFilePath=filePath+"_e";

fos=new FileOutputStream(newFilePath);

aes.encrypt(fis, fos, true);

fos.close();

//刪除源文件,注意如果文件被使用會報:另一個程序正在使用此文件,進程無法訪問

boolean isDel=FileUtil.del(filePath);

if(isDel){

//重命名加密文件為源文件

FileUtil.rename(new File(newFilePath),fileName,true);

//設置只讀文件

if(isReadOnly) {

File f=new File(filePath);

f.setReadOnly();

}

}

bFlag=true;

}else{

throw new RuntimeException(filePath+" 文件不存在!");

}

} catch (Exception e) {

throw new RuntimeException(e);

} finally {

IoUtil.close(fos);

}

return bFlag;

}

/**

* 解密Db庫

* @param filePath 文件路徑

* @param key16 加密密碼(必須16位)

* @return boolean

* @throws Exception

*/

public static boolean decryptFile(String filePath,String key16){

boolean bFlag=false;

FileOutputStream fos =null;

try {

if(FileUtil.exist(filePath)) {

byte[] key = key16.getBytes();

//取文件名稱含后綴

String fileName=FileUtil.getName(filePath);

//解密文件

SymmetricCrypto aes = new SymmetricCrypto(SymmetricAlgorithm.AES, key);

FileInputStream fis = new FileInputStream(filePath);

String newFilePath=filePath+"_d";

fos = new FileOutputStream(newFilePath);

aes.decrypt(fis, fos, true);

//注意,解密之后 fos 并未關閉,請先關閉

fos.close();

//刪除源文件,注意如果文件被使用會報:另一個程序正在使用此文件,進程無法訪問

boolean isDel=FileUtil.del(filePath);

if(isDel){

//重命名加密文件為源文件

FileUtil.rename(new File(newFilePath),fileName,true);

}

bFlag=true;

}else{

throw new RuntimeException(filePath+" 文件不存在!");

}

} catch (FileNotFoundException e) {

throw new RuntimeException(filePath+" 文件不存在!");

}catch (Exception e){

throw new RuntimeException(e);

}finally {

IoUtil.close(fos);

}

return bFlag;

}

/**

* 文件是否占用(采用重命名的方式)

* @param filePath 文件路徑

* @return boolean

*/

public static boolean isLocked(String filePath){

boolean bFlag=false;

String newFileName="";

String fileName="";

try {

if(FileUtil.exist(filePath)) {

// 采用重命名的方式,如果占用無法修改文件名稱,如果未占用修改新的文件名稱后再修改回來

fileName = FileUtil.getName(filePath);

newFileName = fileName + "_n";

FileUtil.rename(new File(filePath), newFileName, true);

}

} catch (Exception e) {

bFlag=true;

}finally {

//如果未占用修改新的文件名稱后再修改回來

if(!bFlag) {

FileUtil.rename(new File(filePath+"_n"), fileName, true);

}

}

return bFlag;

}

}

分享到:
標簽:Java
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定