プログラマーの雑記
普段つまずいたこと、勉強途中の覚え書き
2012年10月29日月曜日
java ファイル存在判断
›
boolean exists = ( new File("filename")).exists(); if (exists) { // ファイル存在 } else { // ファイル存在しない }
java 16進数から色へ変換 関数
›
// Hex to color 16進数から色へ変換 int intValue = Integer.parseInt( "ff0000",16); Color aColor = new Color( intValue ); // Color to hex ...
2012年10月19日金曜日
jquery load関数 アニメーションで表示
›
$ ( "#myDiv" ). fadeOut (). load ( 'www.someurl.com' , function () { $ ( this ). fadeIn (); }); 「fadeOut」と「 fadeIn...
‹
›
ホーム
ウェブ バージョンを表示