boolean exists = (new File("filename")).exists();
if (exists) {
// ファイル存在
} else {
// ファイル存在しない
}
2012年10月29日月曜日
java 16進数から色へ変換 関数
// Hex to color 16進数から色へ変換
int intValue = Integer.parseInt( "ff0000",16);
Color aColor = new Color( intValue );
// Color to hex 色は16進数へ変換
String hexStr = Integer.toHexString( aColor.getRGB() );
int intValue = Integer.parseInt( "ff0000",16);
Color aColor = new Color( intValue );
// Color to hex 色は16進数へ変換
String hexStr = Integer.toHexString( aColor.getRGB() );
2012年10月19日金曜日
jquery load関数 アニメーションで表示
$("#myDiv").fadeOut().load('www.someurl.com', function() {
$(this).fadeIn();
});
「fadeOut」と「 fadeIn」関数を使う
登録:
投稿 (Atom)