jajva IO常用寫法

2021-09-01 20:11:18 字數 816 閱讀 6608

// 指定編碼讀取檔案路徑建立緩衝輸入流

bufferedreader br = new bufferedreader(new inputstreamreader(new fileinputstream(inputfilepath), "utf-8"));

// 根據檔案路徑建立緩衝輸入流

bufferedreader in = new bufferedreader(new filereader(inputfilepath));

// 根據檔案路徑建立緩衝輸出流

bufferedwriter out = new bufferedwriter(new filewriter(outputfilepath));

//回車換行

static final string line_separator = system.getproperty("line.separator"); // /r/n 回車換行

string filepath = buildbpxml.class.getresource("").getpath()+"test.properties"; // 檔案路徑

//output ==> /d:/workspace_bs/corporbank/webcontent/web-inf/classes/test/test.properties

MySQL常用寫法

create database database name 建立資料庫 drop database dbname 刪除資料庫 create table tabname col1type1 not null primary key col2type2 not null 建立新錶,新增限制條件,設定主鍵...

js常用寫法

遍歷陣列 es5 寫法 arr.foreach function value,index 遍歷陣列es6 寫法 for let i of arr 判斷字串str是否以1開頭 str.indexof 1 0 從集合中過濾符合條件的元素 var require lodash var users var ...

常用JDBC寫法

string url driver mysql com.mysql.cj.jdbc.driver deprecated string url driver mysql old com.mysql.jdbc.driver string jdbc url jdbc mysql servername st...