001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.penguin.common; 017 018import java.lang.reflect.InvocationTargetException; // 7.0.0.0 019 020/** 021 * 共通的に使用されるメソッドを集約したクラスです。 022 * 023 * hayabusのcommon.HybsSystemと役割としてはほぼ同じです。 024 * パッケージ間の依存を切るためにこちらにも最小限の機能を持たせておきます。 025 * 026 * @og.group 初期化 027 * 028 * @version 4.0 029 * @author Takahashi Masakazu 030 * @since JDK5.0, 031 */ 032public final class SystemUtil { 033 034 /** システム依存の改行記号 */ 035 public static final String CR = System.getProperty("line.separator"); 036 037 /** HTMLでの改行記号( <br> ) */ 038 // 7.0.1.0 (2018/10/15) XHTML → HTML5 対応(空要素の、"/>" 止めを、">" に変更します)。 039// public static final String BR = "<br />" + CR ; 040 public static final String BR = "<br>" + CR ; 041 042 /** システム依存のファイルセパレーター文字 */ 043 public static final char FS = System.getProperty("file.separator").charAt(0); 044 045 /** 046 * デフォルトコンストラクターをprivateにして、 047 * オブジェクトの生成をさせないようにする。 048 * 049 */ 050 private SystemUtil() {} 051 052 /** 053 * 指定されたクラスローダを使って、識別id に応じた オブジェクトを作成します。 054 * 作成するには、デフォルトコンストラクターが必要です。 055 * initialize パラメータは true 相当(それまでに初期化されていない場合だけ初期化)です。 056 * 057 * @og.rev 6.8.2.3 (2017/11/10) java9対応(cls.newInstance() → cls.getDeclaredConstructor().newInstance()) 058 * 059 * @param cls 作成するクラスのフルネーム 060 * 061 * @return オブジェクト 062 * @throws RuntimeException 何らかのエラーが発生した場合 063 */ 064 public static Object newInstance( final String cls ) { 065 try { 066 return Class.forName( cls ).getDeclaredConstructor().newInstance(); // 6.8.2.3 (2017/11/10) 067 } 068 catch( final ClassNotFoundException ex1 ) { 069 final String errMsg = "クラスが見つかりません。class=[" + cls + "]" + CR 070 + ex1.getMessage() ; 071 throw new RuntimeException( errMsg,ex1 ); 072 } 073 catch( final LinkageError ex2 ) { 074 final String errMsg = "リンケージが失敗しました。class=[" + cls + "]" + CR 075 + ex2.getMessage(); 076 throw new RuntimeException( errMsg,ex2 ); 077 } 078 catch( final InstantiationException ex3 ) { 079 final String errMsg = "インスタンスの生成が失敗しました。class=[" + cls + "]" + CR 080 + ex3.getMessage() ; 081 throw new RuntimeException( errMsg,ex3 ); 082 } 083 catch( final IllegalAccessException ex4 ) { 084 final String errMsg = "クラスまたは初期化子にアクセスできません。class=[" + cls + "]" + CR 085 + ex4.getMessage(); 086 throw new RuntimeException( errMsg,ex4 ); 087 } 088 catch( final NoSuchMethodException | InvocationTargetException ex5 ) { // 6.8.2.3 (2017/11/10) 089 final String errMsg = "指定のメソッド(コンストラクタ)が見つかりませんでした。class=[" + cls + "]" + CR 090 + ex5.getMessage(); 091 throw new RuntimeException( errMsg,ex5 ); 092 } 093 catch( final RuntimeException ex6 ) { // 3.6.0.0 (2004/09/17) 094 final String errMsg = "予期せぬエラー class=[" + cls + "]" + CR 095 + ex6.getMessage() ; 096 throw new RuntimeException( errMsg,ex6 ); 097 } 098 } 099}