ftp
code
description
說明ftp伺服器
220 (vsftpd 2.0.1)
鏈結成功
ftp客戶端
user
useway
輸入使用者名稱
ftp伺服器
331please specify the password
請輸入密碼
ftp客戶端
pass
!@#$%abce
輸入密碼
ftp伺服器
230login successful
登入成功
ftp客戶端
cwd/home/useway
切換目錄
ftp伺服器
250directory successfully changed
目錄切換成功
ftp客戶端
epsv
all為epsv被動鏈結方式
ftp伺服器
200epsv all ok
okftp客戶端
epsv
鏈結ftp伺服器
229entering extended passive mode (62501)
被動鏈結埠為62501
ftp客戶端
list
執行list顯示檔案列表
ftp伺服器
150here comes the directory listing
列表從62501埠被傳送
ftp伺服器
226directory send ok
傳送完成
ftp客戶端
quit
退出ftp
ftp伺服器
221goodbye
再見
如何從Oracle的FORM中呼叫REPORT
在選單中呼叫report程式 不傳引數,傳引數可用下面的程式段 run product reports,報表程式名.rep synchronous,runtime,filesystem,null 在form中呼叫report程式 可傳引數 declare pl id paramlist begin ...
python中的字串表示 str 與 repr
在python直譯器中 hello,world hello,world 列印的字串還是被括號括起來的。這是因為python列印值的時候會保持該值在python 中的狀態,而不是你希望使用者所看到的狀態。如果使用print語句,結果就不一樣了 print hello,world hello,world...
Python字串中,raw字串與repr的區別
在python中,對於乙個字串,設原字串為 str1 如題,如果處理時直接讀取字串,那麼quote對應的 字元將會被轉義為乙個 這可能不是我們想要的結果。為了儲存 兩個字元,考慮對該字串用raw和repr,得到的結果是不同的 使用repr str1 得到的結果將會把所有的轉義字元都保留,包括使用者手...