6. mud study DriverThreadController
package driver; import java.io.IOException; public class DriverThreadContorller implements Runnable{ String driverName ; ConnectionList connectionList; public DriverThreadContorller(String name, ConnectionList connectionList) { driverName = name; this.connectionList = connectionList; System.out.println("DriverThreadContorller"); } @Override public void run() { // TODO Auto-generated method stub try { while(true){ for(Connection conn : connectionList.getConnectionList()){ driverThread(driverName,conn); } } }catch(InterruptedException e){ System.out.println("InterruptedException driver name : "+driverName); e.printStackTrace(); }catch (Exception e) { // TODO: handle exception System.out.println("Excetpion driver name : "+driverName); e.printStackTrace(); } }//run private void driverThread(String driverName,Connection conn) throws IOException, InterruptedException{ String str="...