トップ «前の日記(2009-03-09) 最新 次の日記(2009-03-14)» 編集

jFD開発したりしなかったり日誌

2004|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|
2009年
3月
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31

2009-03-12 [長年日記]

_ はやってるらしいんで書いてみた

jFD2用美人時計ダウンロードスクリプト。

ダウンロードし損なうのはサーバーのせいっぽいです。

_ import java.util.Calendar

import java.text.DecimalFormat

import com.nullfish.lib.vfs.VFS

jfd.primaryCommand = command

currentDir = jfd.model.currentDirectory

format = new DecimalFormat("00")

for(h in 0..23) {

for(m in 0..59) {

name = format.format(h) + format.format(m) + ".jpg"

console.println(name)

from = VFS.getInstance(jfd).getFile("http://www.bijint.com/jp/img/photo/" + name)

to = currentDir.getChild(name)

try {

from.copyTo(to, command)

} catch (Exception e) {

console.printStackTrace(e)

}

Thread.sleep(1000)

}

}

_