public void run() {
try {
WsRequest req=new WsRequest(xmlText);
System.err.println(req.getCode());
System.err.println(req.getNodes("MoSms"));
} catch (Exception e) {
e.printStackTrace();
}
}
上面这段代码是每隔30秒就执行一次的。也就是说WsRequest对象一直被new这样子会影响内存和系统性能,如何优化这段代码呢?