溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java一次性查詢幾十萬或幾百萬數(shù)據(jù)的解決辦法

發(fā)布時(shí)間:2021-10-29 10:41:22 來源:億速云 閱讀:1945 作者:柒染 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)Java一次性查詢幾十萬或幾百萬數(shù)據(jù)的解決辦法,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

Java查詢一次性查詢幾十萬,幾百萬數(shù)據(jù)解決辦法。

很早的時(shí)候?qū)懝ぞ哂玫囊粋€(gè)辦法,當(dāng)時(shí)是用來把百萬數(shù)據(jù)打包成rar文件。

所以用了個(gè)笨辦法。 希望高手指導(dǎo)一下,有什么好方法沒有啊。

  1. 先批量查出所有數(shù)據(jù),例子中是一萬條一批。

  2. 在查出數(shù)據(jù)之后把每次的數(shù)據(jù)按一定規(guī)則存入本地文件。

  3. 獲取數(shù)據(jù)時(shí),通過批次讀取,獲得大批量數(shù)據(jù)。此方法參見:http://yijianfengvip.blog.163.com/blog/static/175273432201191354043148/

以下是查詢數(shù)據(jù)庫(kù)。按批次查詢

public static void  getMonthDataList() {          ResultSet rs = null;          Statement stat = null;          Connection conn = null;          List<DataBean> list = new ArrayList<DataBean>();          try {              conn = createConnection();              if(conn!=null){                  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");                  SimpleDateFormat timesdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");                  String nowDate = sdf.format(new Date());                  Config.lasttimetext = timesdf.format(new Date());                  String lastDate = sdf.format(CreateData.addDaysForDate(new Date(), 30));                  stat = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);                  int lastrow = 0;                  int datanum = 0;                  String countsql = "SELECT count(a.id) FROM trip_special_flight a" +                  " where a.dpt_date >= to_date('"+nowDate+"','yyyy-mm-dd') " +                  "and a.dpt_date <= to_date('"+lastDate+"','yyyy-mm-dd') and rownum>"+lastrow+" order by a.get_time  desc";                  rs = stat.executeQuery(countsql);                  while (rs.next()) {                      datanum = rs.getInt(1);                  }                  int onerun = 10000;                  int runnum = datanum%onerun==0?(datanum/onerun):(datanum/onerun)+1;                  for(int r =0;r<runnum;r++){                      System.out.println("getMonthDataList--"+datanum+" 開始查詢第"+(r+1)+"批數(shù)據(jù)");                      String sql = "SELECT * FROM  (SELECT rownum rn, a.dpt_code, a.arr_code,a.dpt_date,a.airways,a.flight," +                      "a.cabin,a.price FROM trip_special_flight a" +                      " where a.dpt_date >= to_date('"+nowDate+"','yyyy-mm-dd') " +                      "and a.dpt_date <= to_date('"+lastDate+"','yyyy-mm-dd')  order by rownum  asc) WHERE rn > "+lastrow;                      stat.setMaxRows(onerun);                      stat.setFetchSize(1000);                      rs = stat.executeQuery(sql);                      String text = "";                      int i = 1;                      while (rs.next()) {                          text += rs.getString(2)+"|"+rs.getString(3)+"|"+rs.getDate(4)+"|"+rs.getString(5)+"|"+rs.getString(6)+"|"+rs.getString(7)+"|"+rs.getString(8)+"||";                          if(i%1000==0){                              FileUtil.appendToFile(Config.tempdatafile, text);                              text = "";                          }                          i++;                      }                      if(text.length()>10){                          FileUtil.appendToFile(Config.tempdatafile, text);                      }                      lastrow+=onerun;                  }              }          } catch (Exception e) {              e.printStackTrace();          } finally {              closeAll(rs, stat, conn);          }       }

-----java一次性查詢幾十萬,幾百萬數(shù)據(jù)解決辦法

存入臨時(shí)文件之后,再用讀取大量數(shù)據(jù)文件方法。

設(shè)置緩存大小BUFFER_SIZE ,Config.tempdatafile是文件地址。

來源博客 http://yijianfengvip.blog.163.com/blog/static/175273432201191354043148/

package com.yjf.util;  import java.io.File;  import java.io.RandomAccessFile;  import java.nio.MappedByteBuffer;  import java.nio.channels.FileChannel;   public class Test {      public static void main(String[] args) throws Exception {          final int BUFFER_SIZE = 0x300000; // 緩沖區(qū)為3M          File f = new File(Config.tempdatafile);   //  來源博客http://yijianfengvip.blog.163.com/blog/static/175273432201191354043148/          int len = 0;          Long start = System.currentTimeMillis();          for (int z = 8; z >0; z--) {              MappedByteBuffer inputBuffer = new RandomAccessFile(f, "r")                      .getChannel().map(FileChannel.MapMode.READ_ONLY,                              f.length() * (z-1) / 8, f.length() * 1 / 8);              byte[] dst = new byte[BUFFER_SIZE];// 每次讀出3M的內(nèi)容              for (int offset = 0; offset < inputBuffer.capacity(); offset += BUFFER_SIZE) {                  if (inputBuffer.capacity() - offset >= BUFFER_SIZE) {                      for (int i = 0; i < BUFFER_SIZE; i++)                          dst[i] = inputBuffer.get(offset + i);                  } else {                      for (int i = 0; i < inputBuffer.capacity() - offset; i++)                          dst[i] = inputBuffer.get(offset + i);                  }                  int length = (inputBuffer.capacity() % BUFFER_SIZE == 0) ? BUFFER_SIZE                          : inputBuffer.capacity() % BUFFER_SIZE;                  len += new String(dst, 0, length).length();                  System.out.println(new String(dst, 0, length).length()+"-"+(z-1)+"-"+(8-z+1));              }          }          System.out.println(len);          long end = System.currentTimeMillis();          System.out.println("讀取文件文件花費(fèi):" + (end - start) + "毫秒");      }   }

讀取大量數(shù)據(jù)文件方法。

關(guān)于Java一次性查詢幾十萬或幾百萬數(shù)據(jù)的解決辦法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI