時間戳,本機IP,得到所有檔名

2021-09-29 07:43:42 字數 606 閱讀 5918

1.時間戳是system.currenttimemillis(),需要精確到秒就用system.currenttimemillis() / 1000

2.獲取本機ip的方法

string addr = inetaddress.getlocalhost().gethostaddress();

這個只能在windows上獲取,在linux系統下只會得到廣播位址

所以要windows和linux相容的情況:

private static string gethostip() }}

}catch(exception e)

return null;

}

3.得到乙個目錄下的所有檔名/檔案目錄

public static arraylistgetfiles(string path) 

// files.add(templist[i].tostring());

}if (templist[i].isdirectory())

}collections.sort(files);

return files;

}

Python 給某個檔名新增時間戳

問題描述 1 先新增時間戳,再複製移動,兩個檔案加下面的檔名都被修改 將 home kangle webdata jpegimages 路徑下的111.jpg檔案新增當前時刻的時間戳 重新命名為類似2018 03 27 18 11 11 111.jpg的形式,而且儲存到另外乙個路徑 home kan...

得到本機機器名 IP位址及其類別

var ip string ipstr string buffer array 1.32 of char i integer wsdata twsadata host phostent begin if wsastartup 2,wsdata 0 then 為程式使用ws2 32.dll初始化 be...

Python版無重複檔名 帶時間戳

在工作中經常會給臨時檔案起名字,因為擔心重複命名,所以有時候都不知道起什麼名字。為此,我想了乙個辦法,就是在檔名中加入時間戳。比如原來的檔案名叫test,在test後加入當前的時間戳,這樣就能保證命名不重複。方法有了,怎麼實現?python提供了time模組,該模組中有乙個叫time 的函式,它返回...