大家快看哪,JClass的一段原始碼,不是程式碼有問題就是我有問題,不過我想我沒問題。

mellon發表於2003-08-08
public Encoder getEncoder() {
if (encoder == null) {
// encoder null so attempt to load it
Class encoder_class = null;
try {
encoder_class = Class.forName(encoderClass);
}
catch (ClassNotFoundException cnfe) {
}

if (encoder_class != null) {
try {
encoder = (Encoder) encoder_class.newInstance();
}
catch (InstantiationException ie) {
}
catch (IllegalAccessException iae) {
}
}
}
return encoder;
}mellonhmWy3e1SV8.java

相關文章