这段代码我在eclipse里面编译没问题,但是用ant编译的时候会报错:未报告的异常 java.sql.SQLException;必须对其进行捕捉或声明以便抛出。        try
        {
            do
            {
                final List l = new ArrayList();
                js.getJt().query("select * from tif_custcall where deal_flag = 2 ", new RowCallbackHandler() {                    public void processRow(ResultSet rs)
                        throws SQLException
                    {
            .....                  }                });
            } while(true);
        }
        finally
        {
            for(int i = 0; i < outputAdapter.length; i++)
                outputAdapter[i].close();        }try可以不跟catch吗?