当前位置: 首页>編程日記>正文

android导入excel文件格式,android 把数据导入到excel文件中的三种方法

android导入excel文件格式,android 把数据导入到excel文件中的三种方法

在android平台如何把数据导入到excel文件中,以便方便查看数据呢?

我知道的方法有三种:

方法1,不借助第3方插件,按照excel中空格键和table键的分布来写文件,把文件后缀名写为.xls;

方法2,借助第三方插件,如一个叫做IPO的插件;

方法3,借助第三方插件,如一个叫作JIX的插件。

昨天本人用的是第三种方法,现在记录下来,以便不时之需:

step1:去网上下载jix.jar包;

step2:导入到工程中。(可以导入到eclipse中,或在源码的package/apps/目录编译。具体方法如我的另一篇博文《.jar文件在android源码中的编译》)

step3:把关键代码贴在这,仅供参考:

import java.io.File; import java.io.IOException; import java.util.List; import jxl.Workbook; import jxl.write.Label; import jxl.write.WritableSheet; import jxl.write.WritableWorkbook; import jxl.write.WriteException; import jxl.write.biff.RowsExceededException; import android.content.Context; import android.os.Environment; import com.sprdsrt.base.core.ResRecord; public class JxlHelper {     private static final String TAG = "leichi";     private Context mContext = null;     public JxlHelper(Context context) {         mContext = context;     }     public void writeDataToExcel() {         List list = ProviderUtil.getResRecordList(mContext);         WritableWorkbook wwb = null;         String fileName = Environment.getExternalStorageDirectory() + "/" + "SrtResult" + ".xls";         int size = list.size();         int numrows = size;         int numcols = 6;         String[][] SrtResult = new String[size + 1][numcols];         // the extra row is used for title;         SrtResult[0][0] = "_ID";         SrtResult[0][1] = "PACKAGENAME";         SrtResult[0][2] = "CASEID";         SrtResult[0][3] = "RESULT";         SrtResult[0][4] = "DESCRIPTION";         SrtResult[0][5] = "NOTE";         for (int i = 0; i < size; i++) {             SrtResult[i + 1][0] = String.valueOf(list.get(i).getId());             SrtResult[i + 1][1] = list.get(i).getPackageName();             SrtResult[i + 1][2] = list.get(i).getCaseID();             SrtResult[i + 1][3] = list.get(i).getResult();             SrtResult[i + 1][4] = list.get(i).getCaseDescription();             SrtResult[i + 1][5] = list.get(i).getNote();         }         try {             wwb = Workbook.createWorkbook(new File(fileName));         } catch (IOException e) {             e.printStackTrace();         }         if (wwb != null) {             // to create a table;             // Workbookçš„createSheet has two parameters,the first one is the name             // of table,and the second one is the position of this table in a             // book.             WritableSheet ws = wwb.createSheet("sheet1", 0);             // to add the cells             for (int i = 0; i < numrows + 1; i++) {                 for (int j = 0; j < numcols; j++) {                     // Note:the j means the column,the i means row                     Label labelC = new Label(j, i, SrtResult[i][j]);                     try {                         // add the cells got just now into table;                         ws.addCell(labelC);                     } catch (RowsExceededException e) {                         e.printStackTrace();                     } catch (WriteException e) {                         e.printStackTrace();                     }                 }             }         }         try {             wwb.write();             wwb.close();         } catch (WriteException e) {             e.printStackTrace();         } catch (IOException e) {             e.printStackTrace();         }     } }


https://www.fengoutiyan.com/post/14332.html

相关文章:

  • 鏡像模式如何設置在哪,圖片鏡像操作
  • 什么軟件可以把圖片鏡像翻轉,C#圖片處理 解決左右鏡像相反(旋轉圖片)
  • 手機照片鏡像翻轉,C#圖像鏡像
  • 視頻鏡像翻轉軟件,python圖片鏡像翻轉_python中鏡像實現方法
  • 什么軟件可以把圖片鏡像翻轉,利用PS實現圖片的鏡像處理
  • 照片鏡像翻轉app,java實現圖片鏡像翻轉
  • 什么軟件可以把圖片鏡像翻轉,python圖片鏡像翻轉_python圖像處理之鏡像實現方法
  • matlab下載,matlab如何鏡像處理圖片,matlab實現圖像鏡像
  • 圖片鏡像翻轉,MATLAB:鏡像圖片
  • 鏡像翻轉圖片的軟件,圖像處理:實現圖片鏡像(基于python)
  • canvas可畫,JavaScript - canvas - 鏡像圖片
  • 圖片鏡像翻轉,UGUI優化:使用鏡像圖片
  • Codeforces,CodeForces 1253C
  • MySQL下載安裝,Mysql ERROR: 1253 解決方法
  • 勝利大逃亡英雄逃亡方案,HDU - 1253 勝利大逃亡 BFS
  • 大一c語言期末考試試題及答案匯總,電大計算機C語言1253,1253《C語言程序設計》電大期末精彩試題及其問題詳解
  • lu求解線性方程組,P1253 [yLOI2018] 扶蘇的問題 (線段樹)
  • c語言程序設計基礎題庫,1253號C語言程序設計試題,2016年1月試卷號1253C語言程序設計A.pdf
  • 信奧賽一本通官網,【信奧賽一本通】1253:抓住那頭牛(詳細代碼)
  • c語言程序設計1253,1253c語言程序設計a(2010年1月)
  • 勝利大逃亡英雄逃亡方案,BFS——1253 勝利大逃亡
  • 直流電壓測量模塊,IM1253B交直流電能計量模塊(艾銳達光電)
  • c語言程序設計第三版課后答案,【渝粵題庫】國家開放大學2021春1253C語言程序設計答案
  • 18轉換為二進制,1253. 將數字轉換為16進制
  • light-emitting diode,LightOJ-1253 Misere Nim
  • masterroyale魔改版,1253 Dungeon Master
  • codeformer官網中文版,codeforces.1253 B
  • c語言程序設計考研真題及答案,2020C語言程序設計1253,1253計算機科學與技術專業C語言程序設計A科目2020年09月國家開 放大學(中央廣播電視大學)
  • c語言程序設計基礎題庫,1253本科2016c語言程序設計試題,1253電大《C語言程序設計A》試題和答案200901
  • 肇事逃逸車輛無法聯系到車主怎么辦,1253尋找肇事司機