讀寫檔案工具類

2021-10-03 21:23:09 字數 1052 閱讀 4622

public class utils  else 

try

fileoutputstream os = new fileoutputstream(file);

os.write(str.getbytes());

os.close();

} catch (exception e)

}public static string read() else

try

is.close();//關閉輸入流

} catch (ioexception e) finally

} catch (ioexception e) }}

} catch (filenotfoundexception e)

return content;

}}

1. 清單檔案中新增讀寫許可權

2.android6.0以上版本要動態申請讀寫許可權

arraylistpermissionlist = new arraylist<>();

private string permissions = ;

//檢測是否有寫的許可權

//判斷手機版本,如果低於6.0 則不用申請許可權,直接拍照

if (build.version.sdk_int >= build.version_codes.m)

if (checkselfpermission(permissions[1]) != packagemanager.permission_granted)

if (!permissionlist.isempty()) else

} else

@override

public void onrequestpermissionsresult(int requestcode, @nonnull string permissions, @nonnull int grantresults) else

break;

}}

C ini檔案讀寫類

vc中提供了api函式進行ini檔案的讀寫操作,但是微軟推出的c 程式語言中卻沒有相應的方法,下面是乙個c ini檔案讀寫類,從網上收集的,很全,就是沒有對section的改名功能,高手可以增加乙個。using system using system.io using system.runtime....

工具篇 csv檔案讀寫

目的 在python處理資料的很多時候,需要載入檔案,通常還是csv格式,希望載入之後是個二維列表 陣列,這樣才方便處理 1.簡單的api能夠匯入資料到記憶體中 2.能夠適應複雜 大資料量機器學習的場景csvimport pandas as pd import numpy as np df pd.r...

Java工具類 Java檔案工具類

public class fileutils 讀取檔案並作為byte返回 param file 目標檔案 return throws ioexception public static byte readfileasbytes file file throws ioexception 讀取檔案並作為...