「Struts」html:formでフォームを出力する方法
属性
action
アクションマッピングで指定
enctype
「multipart/form-data」を指定
method
デフォルトpost
onsubmit
Ja ...
「PHP」strtolower()とstrtoupper()で大小文字を変換する
1.strtolower関数
英字の大文字を小文字にする
$str = “TOKYO”;
print strtolower($str);
結果 tokyo
2.str ...
Debian 11.2にSquid をインストールする
環境
osバージョンを確認します
# cat/etc/debian_version
11.2
インストールの方法
1.Squid をインストールします
# apt -y install ...
「Windows10」Excelブックを保存する方法
操作方法
1.「ファイル」->「名前を付けて保存」をクリックします。
2.「コンピューター」->「参照」をクリックします。
3.「ファイルの種類(I)」欄に「Excelブック」を選択します。 ...
「CSS」 font-weightで文字の太さを英字で指定するサンプル
書式
font-weight:(normal,bold,lighter,bolder)
使用例
<style> .cftA {/* 標準 */font-weight: normal; }/* 太字 ...Traefik 2.1.6ダウンロード
更新内容
Update go-acme/lego to v3.4.0 (#6376 by ldez)Return an error when ping is not enabled. (#6304 by ldez) ...
Cacti 1.2.10 ダウンロード
更新内容
security#3285: When guest users have access to realtime graphs, remote code could be executed (CVE-2020-88 ...
「Windows10」ExcelのファイルをPDFに変換する方法
操作方法
1.「ファイル」をクリックする
2.「エクスポート」をクリックする
3.「PDF/XPS ドキュメントの作成」をクリックする
4.ファイル名を指定し、保存する
Rufus 3.9ダウンロード
概要
Rufus (ルーファス) とは、起動可能なUSBフラッシュドライブ(USBメモリなど)を作成したり、フォーマットをするためのソフトウェアです。
起動可能なISOファイル(Windows、Linux、UEFIな ...「C言語」abs関数で絶対値を計算する
サンプルコード
int a= 5;
printf(” %d\n”, a, abs(a));
int b = -6;
printf(” %d\n”, b ...
CKEditor 5 v17.0.0 ダウンロード
更新内容
The two features added in CKEditor 5 v17.0.0, table styles and special characters, were high on the “most ...
Redisson 3.12.3 ダウンロード
更新内容
Feature – SetObjectListener added to RBucket object
Feature – RBinaryStream should expose ...
[Android]TableLayout、TableRowを使用するサンプル
説明
android:collapseColumns
列を折りたたむ
android:stretchColumns
画面内に収まるように列幅を広げて表示
1.アプリケーション MainAct ...
IPFire 2.25 ダウンロード
更新内容
A unified page with all DNS settingsMore than two DNS servers can be added for better load-balancing and ...
WinSCP 5.17.1 ダウンロード
更新内容
Bug fix: Confirmation to close WinSCP does not have a help page associated (to explain the workspace). 1825「java」正規表現でIPアドレスをチェックするサンプル
サンプルコード
public static boolean isIPAddr(String strIP) {
return Pattern.matches(“((\\d|\\d|1\\d\\d|2\\d|2 ...
「Struts2」s:submitでリソースファイルから文字列を取得する
サンプルコード:
<s:submit cssClass=”cft btn-user” value=”%{getText(‘button.confirm’)} ...
「java」正規表現で半角英数字をチェックするサンプル
サンプルコード
public static boolean isHalfAlaNum(String str) {
return Pattern.matches(“^+$”, str);