IO関連
1654 ワード
1.入力フローの読み出し
2、フレームワークの概念及び反射技術でフレームワークを開発する原理:
Javaコード
3、クラスローダでリソースとプロファイルを管理する:
サンプルコード:
InputStream is = socket.getInputStream();
int length = 0;
byte[] buffer = new byte[1024];
while(-1 !=(length = is.read(buffer, 0, buffer.length))){
String str = new String(buffer,0,length);
System.out.println(str);
}
2、フレームワークの概念及び反射技術でフレームワークを開発する原理:
Javaコード
// config.properties
className=java.util.ArrayList
// ,
public static void main(String[] args) throws Exception{
InputStream inStream = new FileInputStream("config.properties");
Properties props = new Properties();
props.load(inStream);
String className = props.getProperty("className");
Collection collection = (Collection)Class.forName(className).newInstance();
.....
......
}
3、クラスローダでリソースとプロファイルを管理する:
サンプルコード:
// ClassLoader ,
InputStream inStream = TestReflection2.class.getClassLoader().getResourceAsStream("cn/itcast/day1/config.properties");
// , xxxx.class xxx 。
InputStream inStream = TestReflection2.class.getResourceAsStream("config.properties");
Properties props = new Properties();
props.load(inStream);
String className = props.getProperty("className");
Collection collection = (Collection)Class.forName(className).newInstance();