Software

サンプルコード

package com.arkgame.study;import java.util.HashSet;import java.util.Set;public class HashSetDemo {public s ...

Software

1.Tomcat8.5のPORTがLISTENG状態か確認
C:\data>netstat -an | findstr 0.0:8080
TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING ...

Software

サンプルコード

package com.arkgame.study;public class IntegerDemo {public static void main(String[] args) {try {int a = I ...

Software

方法1

UPDATE TABLE_NAME SET COLUMN_NAME1 = VALUE1 , COLUMN_NAME2 = VALUE2 中略 ;

 

方法2

UPDATE TABLE_NA ...

Software

書式
$(“.class名”)
サンプルコード

$(document).ready(function(){ $("button").click(function(){ $(".test") ...

Software

構文
$(“#id名”)

サンプルコード

$(document).ready(function(){ $("button").click(function(){ $("#test"). ...

Software

サンプルコード

public static boolean isStrEmpty(String str){   if(str == null || str.length()==0){    return true;   }  r ...

Software

説明
precision–列の精度
nullable– DBのカラム列がnull可能かどうか
unique–列がユニークキーであるかどうか
columnDefinit ...

Software

1.equals()
例1
Integer intA = new Integer(33);
Integer intB = new Integer(33);
System.out.println(intA ...

Software

書式
fn:substring(対象文字列 , 開始位置 , 終了位置)

例1
${fn:substring(‘aakdfcqcc’,2,7)}/*結果kdfcq*/

例 ...

Software

コマンド
# yum install –enablerepo=epel libwebp
# yum install –enablerepo=remi-php70 gd-last
# yu ...

Software

1.PHP7.0をインストール
#yum install –enablerepo=remi,remi-php70 php php-devel php-mbstring php-pdo php-gd php-xml ...

Linux

1.tar.gz
圧縮
tar -zcvf test.tar.gz directory
解凍
tar -zxvf test.tar.gz

2.tar.bz2
圧縮
tar - ...

Software

書式
FILE *fopen(const char *filename, const char *mode);
サンプルコード

#include <stddef.h>#include <stdi ...

Software

書式
ln targetlink

1.ハードリンクを作成
ディレクトリ(testdir)内にあるファイル(testfile)にlnコマンドを実行する
$ ln testdir/testfile ...

Software

ダウンロード
WinSCP-5.15.9-Setup.exeをダウンロードする。

インストール手順

1. ライセンス条件を確認する画面が表示されます。同意する場合は「許諾(A)」をクリックする

Linux

1.ダウンロード
teraterm-4.105.exeファイルをダウンロードして実行する。

2.セットアップに使用する言語に「日本語」を選択し、「OK」をクリックする。
3.「次へ」–

Software

Bug FixesFixed two performance issues related to memtable history trimming. First, a new SuperVersion is now created onl ...