A File
object is used to represent a filename. Creating the File
object has no effect on the file system; the filename need not exist nor is it created.
On Windows, this example creates the path\a\b
. On Unix, the path would be /a/b
.
String path = File.separator + "a" + File.separator + "b";
|----------------------------------------------------------------------------------------|
版權(quán)聲明 版權(quán)所有 @zhyiwww
引用請(qǐng)注明來源 http://www.aygfsteel.com/zhyiwww
|----------------------------------------------------------------------------------------|
posted on 2006-06-13 11:52
zhyiwww 閱讀(256)
評(píng)論(0) 編輯 收藏 所屬分類:
code demo -java