11月19日隨筆

2022-07-26 18:42:12 字數 1017 閱讀 2816

今天在雲和學院學習了file類

基本操作:判存、複製、移動、刪除

基本方法:

–file.exist();

–file.copy();

–file.move();

file.delete()

file.copy(「source」, 「targetfilename」, true);//檔案拷貝,true表示當檔案存在時「覆蓋」,如果不加true,則檔案存在報異常。

file.exists();//判斷檔案是否存在

file.move(「source」, 「target」);//移動(剪下)

file.delete(「path」);//刪除。

file.create(「path」);//建立檔案

file.readalllines(「path」, encoding.default);//讀取所有行,返回string

file.readalltext(「path」, encoding.default);//讀取所有文字返回string

file例項:判斷檔案是否存在

if (file.exists(@"f:\jay.txt"))

else

console.writeline("ok");

console.readkey();

file.delete(@"f:\jay.txt");//刪除檔案

建立檔案

string filepath = @"f:\jay.txt";

file.create(filepath);

讀出文件中的內容

string jay=file.readalllines(@"f:\jay.txt");

string jay = file.readalltext(@"f:\jay.txt");

console.writeline(jay);

foreach (var item in jay)

console.readkey();

日誌11月19日

今天學習資料庫刪除操作 mysql import mysqldb 開啟資料庫連線 db mysqldb.connect localhost testuser test123 testdb charset utf8 使用cursor 方法獲取操作游標 cursor db.cursor sql 刪除語句...

11月18日隨筆

今天在雲和學院複習了以前的知識,又學習了arraylist和hashtable arraylist例項 arraylist arr new arraylist int i 123 string str 宋連城 float f 1.23f decimal d 2.13m double dou 22.1...

7月19日day11總結

今天學習過程和小結 上午進行測試複習了 1,hdfs 中namenode 和datanode 作用2,hdfs 副本存放機制 3,mapreduce 計算處理過程 4,格式化 hdfs 命令5,hdfs 的核心配置檔案內容配置 sql語句 部門表 6,統計各個部門的人數 7,查詢所有部門。8,倒排索...