複数ウインドウを上げない方法

 リンクで別ウインドウを起動する際に、同じウインドウに対して
表示するには、アンカータグのtargetを同じ名前にする。

<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=windows-31j”>
<title>他のウインドウを開くテスト</title>
</head>
<body>
<a href=”test1.html” target=”equalWin”>test1</a>
<br>
<a href=”test2.html” target=”equalWin”>test2</a>
<br>
<a href=”test3.html” target=”equalWin”>test3</a>
</body>
</html>
こうすると、同じウインドウがひらいて、よびもとウインドウが上にくるので、
開かれた方のウインドウに以下を書くと良い。
<body onload=”self.focus();”>

 

Linux ホスト名の設定、変更

2箇所必要です。

/etc/sysconfig/network の HOSTNAMEを設定

/etc/hosts のlocalhostを設定

# vi /etc/sysconfig/network

HOSTNAME=dev-linux1

とすると、ホスト名はdev-linux1となる。

もう一つ

# vi /etc/hosts

127.0.0.1               dev-linux1 localhost.localdomain localhost

# /etc/init.d/network restart

でOK。

 

Java:後方一致で文字を検索する。 大文字小文字無視。(StringUtils)

StringUtils.endsWithIgnoreCaseを使用する。

 /**
  * 後方一致で文字を検索します。 大文字小文字無視。
  *
  * @param subject
  *            検索対象
  * @param suffix
  *            検索する文字
  * @return boolean
  */
 public static boolean strEndsWithIgnoreCase(String subject, String suffix) {
  return StringUtils.endsWithIgnoreCase(subject, suffix);
 }

MySQL ヴァージョンの調べ方

mysqladmin を使用する。ユーザ名とパスワードが聞かれる。

mysqladmin version -uroot -p
Enter password:
mysqladmin  Ver 8.41 Distrib 5.0.45, for redhat-linux-gnu on i686
Copyright (C) 2000-2006 MySQL AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Server version          5.0.45
Protocol version        10
Connection              Localhost via UNIX socket
UNIX socket             /var/lib/mysql/mysql.sock
Uptime:                 15 days 1 hour 17 min 53 sec

Threads: 1  Questions: 222  Slow queries: 0  Opens: 25  Flush tables: 1  Open tables: 19  Queries per second avg: 0.000