我看到public naixement(int fill) throws DBException{
super();
try {
String str = "select * from naixement where id_fill=?";
PreparedStatement pst = con.prepareStatement(str);
pst.setInt(1, fill);
ResultSet rs = pst.executeQuery();
if (rs.next()){
this.idFill = fill;
this.idLloc = nullify(rs.getInt("id_lloc"));
this.idUnio = nullify(rs.getInt("id_unio"));
try {
try{
System.out.println("Data de naixement: "+rs.getString("data_naixement")+
" id: "+fill);
}catch (NullPointerException e){}
this.dataNaixement = new date(rs.getString("data_naixement"));
} catch (dateException ex) {
this.dataNaixement = new date();
}
}else{
throw new DBException("S'ha intentat aconseguir un naixement "
+ "inexistent (id de la persona: "+fill+")");
}
} catch (SQLException ex) {
System.err.println("Excepció amb id_fill: "+fill);
Logger.getLogger(municipi.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
方法已弃用且PluginState
中SetPluginsEnabled
无法使用。我应该将其用作替代方法?
API 18
答案 0 :(得分:0)
如documentation&#34所述;将来不再支持插件,不应使用"。没有其他选择,您可以继续使用它,直到将来的Android版本中删除,但准备停止支持Flash网页并考虑迁移到HTML5。