java.lang.reflect.Modifier.isStatic()でstaticメソッドを判定するサンプル
Javaコード:
package com.arkgame.study;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier; ...
java.io.Fileとjava.nio.file.Pathの変換サンプル
Javaコード:
File file = new File(‘\tmp\xxx.tmp’)
//File–>Path
Path srcPath = file.toPat ...
java.util.HashMap.putAll()のサンプル
Javaコード
package arkgame.study;
import java.util.HashMap;
public class PutAllDemo {
public stati ...
java.sql.Timestamp.valueOf()のサンプル
サンプルコード
package com.arkgamer.study;
public class TimeStampDemo {
public static void main(String[] arg ...
java.util.LinkedHashMap.LinkedHashMap()のサンプル
サンプルコード:
package com.arkgame.study;
import java.util.Iterator;
import java.util.LinkedHashMap;
impo ...
java.lang.String.startsWith()とjava.lang.String.startsWith()のサンプル
サンプルコード
package com.arkgame.study;
public class StartWithDemo {
public static void main(String[] args ...
java.util.PropertiesでPropertyファイルを読み込むサンプル
サンプルコード:
private static final String COMMON_FILE_PATH = “common.properties”;
private static final ...
「java開発」RMI (Remote Method Invocation)を使うメモ
1.インタフェースを定義する
package com.arkgame.server;
import java.rmi.Remote;
import java.rmi.RemoteException;
p ...
java.lang.Integer.toHexString()のサンプル
サンプルコード
package test;
public class AndclassDemo {
public static void main(String[] args) {
int cft ...
java.util.regex.Pattern.splitAsStream()のサンプル
Javaコード
package test;
import java.util.regex.Pattern;
import java.util.stream.Stream;
public clas ...
「Struts2入門」addActionMessageの利用方法
1.usermatome.properties
user.manage=ユーザ{0}は{1}歳です
2.UserManegAction.java
List<String> cft = Array ...
Java.lang.String.charAt()のサンプル
サンプルコード
package com.arkgame.itstudy;
public class CharAtdemo {
public static void main(String[] arg ...
「Spring入門」@Documentedのサンプル
サンプルコード
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited ...
JavaでbinarySearchの実装サンプル
Javaコード
public static int binarySearchFunc(int a) {
return middle;
}
if (tag > a) {
first = mi ...
Javaでバブルソートの実装サンプル
Javaコード
public static void cftbubble(int a > a) {
swap = a;
a = a;
a = swap;
}
}
} ...
「Java入門」java.util.Iterator()のサンプル
サンプルコード
import java.util.Arrays;
import java.util.Iterator;
import java.util.LinkedList;
import java. ...
@FunctionalInterface関数インターフェースのサンプル
サンプルコード
package test;
public class InterFaceDemo {
public static void main(String[] args) {
chang ...
[Java入門]java.sql.Timestamp.after()のサンプル
Javaコード
package test;
import java.sql.Timestamp;
import java.text.ParseException;
import java.text. ...