2012年12月27日木曜日

java 文字列は数字かとかの判定


public static boolean isNumeric(String str)
{
  return str.matches("-?\\d+(\\.\\d+)?");  //match a number with optional '-' and decimal.
}

2012年12月19日水曜日

nginx proxy_pass リモートIP

location / {
                       proxy_pass        http://www.example.com:8080; #ここはリモートIPを入れて
                       proxy_set_header   Host             $host;
                       proxy_set_header   X-Real-IP        $remote_addr;
                       proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
              }