//获取手机信息 function GetPhoneInfo(): string; Var TelephonyManager: JTelephonyManager; TelephonyServiceNative: JObject; begin result := ''; TelephonyServiceNative := SharedActivityContext.getSystemService (TJContext.JavaClass.TELEPHONY_SERVICE); if Assig…
1.文件 open()代开文件或者创建文件 fout=open('oops.txt','wt') print('Oops, I created a file.',file=fout) fout.close() exists()检查文件是否存在,传入相对或者绝对路径 import os >>>os.path.exist('oops.txt') True >>>os.path.exist('./oops.txt') True >>>os.path.exis…