码迷,mamicode.com
首页 > 数据库 > 详细

多线程实现多数据库模拟连接

时间:2017-07-09 10:59:41      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:trace   try   sed   color   tac   seda   url   code   nbsp   

   while (true)


            {

                    Scanner scanner = new Scanner(System.in);
                    System.out.print("输入Url:");
                    String url = scanner.next();
                    Thread t1 = new Thread(new BaseDao(url), "zi");
                   // Thread t2 = new Thread(new BaseDao(url), "qw");
                  //  Thread t3 = new Thread(new BaseDao(url), "rrr");
                    try {

                        t1.start();
                        t1.join();
                      // t2.start();
                      //   t3.start();





                    } catch (Exception e) {
                        e.printStackTrace();
                    }
           
               // System.out.println(Thread.currentThread().getName() + " " + i);
            }

 

多线程实现多数据库模拟连接

标签:trace   try   sed   color   tac   seda   url   code   nbsp   

原文地址:http://www.cnblogs.com/chenhuiyuan/p/7140504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!