2014年1月15日

[JAVA] java foreach 的index

It<Foo> fooIt = it(fooList);
for (Foo foo : fooIt) {
  //for each foo in fooList...
  foo.doSomething();
  //if you need the current index:
  System.out.println(fooIt.getIndex());
}

2014年1月14日

ORA-12519: TNS:no appropriate service handler found

spte1
select count(*) from v$process;

step2
select value from v$parameter where name='processes';

step3
∵stpe2的值應該會比step1大

alter system set processes=300 scope=spfile;

step4
重開

2014年1月2日

批次改相片EXIF 拍照時間

出國忘了調相機時間

本來用PICASA改 但批次改的時候 感覺怪怪的

上網找到 jhead  但沒有界面 只能用CMD

http://www.sentex.net/~mwandel/jhead/

下載後 WIN7 要放在 【C:\Windows\System32】 (不然亂放照說明直接點兩下會無效)

然後 在目錄下打指令即可

例:
D:\PHOTO\TEST>jhead -ta+1:00 *.jpg

(對D:\PHOTO\TEST 下所有照片時間調快一小時)


---網路上其他說明---
http://www.mobile01.com/topicdetail.php?f=256&t=162219#16236094
(1)先把[EXIF內的時間]加上時差:
 「jhead -ta+1:00 **/*.jpg」:把時間調晚1小時;
 「jhead -ta-0:02:44 **/*.jpg」:把時間調早2分44秒
(2)再把檔案時間調成[EXIF內的時間]:
 「jhead -ft **/*.JPG」

http://tonysnote.blogspot.tw/2012/06/jheadexiftool.html