SpringMVC

Javaコード

  @RequestMapping(value="/create",method = RequestMethod.POST) public ModelAndView create(@RequestParam("u ...

Windows10

操作方法
1.Chrome を開きます。

2.右上のその他アイコン をクリックします。

3. をクリックします。

3.期間を から に変更します。

4.タブ をクリックします。 ...

Windows10

ダウンロード
開発元サイトからダウンロード
softpediaサイトからダウンロード

概要
デスクトップに雪を降らすことができる。
大小様々な雪をデスクトップに降らすことができる。

Python

構文
def 関数名():
while 条件
yield xxx

サンプルコード

# coding: utf-8def sampleFunc(n): while n < 10: yiel ...

Windows10

操作方法
1.「スタート」->「Windows管理ツール」をクリックします。

2.「タスクスケジューラー」をクリックします。

3.確認したいタスクをクリックします

4.タスクを右クリッ ...

Windows10

ダウンロード
開発元サイトからダウンロード
Softpediaサイトからダウンロード

更新内容

Changed: plugin architecture. Update plugins.
Cha ...

Java

書式
1.public static int max(int a,int b)
2つのint値のうち大きいほうを返します

2.public static int min(int a,int b)
2 ...

VB.net

javaコード
package com.arkgame.study;

import java.io.File;
import java.io.FileNotFoundException;
impor ...

Linux

操作コマンド:
1.cd/etc/yum.repos.d
2.mv CentOS-Base.repo CentOS-Base.repo.backup 元のリポジトリをバックアップ
3.wget repoのダウ ...

shellscript

操作コマンド:
$ vi check_user.sh
#!/bin/sh
echo “You are logged in as `whoami`”;
if ; then

MySQL

1.Linux 5.7版のダウンロード
MySQL-server-5.7.4_m14-1.el6.x86_64.rpm
MySQL-client-5.7.4_m14-1.el6.x86_64.rpm

2.D ...

Linux

シリア番号: dmidecode | grep -i ’serial number’
CPU:cat/proc/cpuinfo
メモリ:cat/proc/meminfo
カード:cat/proc/pci

Linux

コマンド:
1.サブディレクトリのみをリスト
ls -F | grep/$ または alias sub = “ls -F | grep/$”(linux)
ls -l | grep &# ...

Linux

1.全てのプロセスが使用中のファイル数
lsof |wc -l

2.特定プロセスが使用中のファイル数
lsof -p pid |wc -l

Python

構文
unicodedata.numeric(chr)
文字 chr に割り当てられている数値を、float で返します。この値が定義されていない場合には default が返されますが、この引数が与えられていなければ ...

Windows10

ダウンロード
開発元サイトからダウンロード
softpediaサイトからダウンロード

新機能と更新内容Embedded web browser updated. Support of Mac OS X 10.10 ...

Python

書式
print(辞書名)
使用例

cft ={ "username": "yamada", "city": "tokyo", "age": 21}print(cft)

結果
{‘user ...

Kotlin

書式
append(文字列)

使用例

fun main() { val strA = "test" val strB = " message " val sb = StringBuilder()//文字列追加 ...