Android 操作excel功能实例代码

学习app对excel的读写控制

1.界面设计

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/activity_main"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingBottom="@dimen/activity_vertical_margin"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  tools:context="com.npmaster.myexcel.MainActivity">
  <LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/childlayout"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">
    <TableLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="#ffcccccc"
      android:layout_margin="1dp">
    <!-- line1 -->
    <TableRow
      android:layout_width="match_parent"
      android:layout_height="20dp"
      android:background="#ffcccccc"
      android:layout_margin="0.5dp">
      <TextView
        android:layout_width="0.0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="工参数据导入"
        android:id="@+id/tvtip" />
      <TextView
        android:text="默认路径"
        android:layout_width="0.0dp"
        android:layout_height="wrap_content"
        android:layout_weight="2"
        android:id="@+id/tvpath" />
    </TableRow>
      <!---->
      <TableRow
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#ffffcc99"
        android:layout_margin="0.5dp">
        <Button
          android:text="导入数据"
          android:layout_width="0.0dp"
          android:layout_height="match_parent"
          android:id="@+id/btImport"
          android:textSize="12dp"
          android:layout_weight="1"/>
        <Button
          android:text="清理数据"
          android:layout_width="0.0dp"
          android:layout_height="match_parent"
          android:id="@+id/btClear"
          android:textSize="12dp"
          android:layout_weight="1"/>
      </TableRow>
    </TableLayout>
    <android.support.v7.widget.RecyclerView
      android:scrollbars="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:divider="#ffff0000"
      android:dividerHeight="10dp"
      android:id="@+id/rcvEngineerParameters"/>
  </LinearLayout>
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
  <TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#ffcccccc"
    android:layout_margin="0dp">
    <TableRow
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:background="#ffffcc99"
      android:layout_margin="0.5dp">
      <TextView
        android:text="Ci"
        android:layout_width="0.0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:textSize="12dp"
        android:id="@+id/tvCid" />
      <TextView
        android:text="CellName:"
        android:layout_width="0.0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:textSize="12dp"
        android:id="@+id/tvCellName" />
      <TextView
        android:text="Longtitude"
        android:layout_width="0.0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:textSize="12dp"
        android:id="@+id/tvLongtitude" />
      <TextView
        android:text="Attitude:"
        android:layout_width="0.0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:textSize="12dp"
        android:id="@+id/tvAttitude" />
      <TextView
        android:text="Azimuth:"
        android:layout_width="0.0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:textSize="12dp"
        android:id="@+id/tvAzimuth" />
    </TableRow>
  </TableLayout>
</LinearLayout>

2. 代码设计

package com.npmaster.myexcel;
import android.os.Environment;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.OrientationHelper;
import android.support.v7.widget.RecyclerView;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import android.util.Log;
import android.widget.Toast;
import jxl.*;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import static android.support.v7.recyclerview.R.styleable.RecyclerView;
public class MainActivity extends AppCompatActivity {
  public static final int IMPORT_FILE_SUCCESS = 0;
  public static final int IMPORT_FILE_NOT_EXISTS= 1;
  public static final int IMPORT_FILE_FAIL = 2;
  private static final String LOG_TAG = "NPLOG";
  private String npmasterDir = "/npmaster/";
  private String filepName = "my.xls";
  private String absFullPath = "";
  private static final int DEFAULT_SHEET = 0;
  public List<EngineerCellInfo> cfgCelllist = null;
  public EngineerCellInfo defaultItem;
  private EngineerRecycleViewAdapter myRecycleViewAdapter;
  private RecyclerView recyclerView;
  Toast toast;
  Button btClear,btImport;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    /* 生成默认的title */
    initData();
    absFullPath =Environment.getExternalStorageDirectory().toString()+npmasterDir;
    createFolder(absFullPath);
    createEngineerFile(absFullPath+filepName);
    generateTestData();
    TextView tv = (TextView) findViewById(R.id.tvpath);
    tv.setText(absFullPath+filepName);
    recyclerView = (RecyclerView)findViewById(R.id.rcvEngineerParameters);
    //线式布局类似 listview
    LinearLayoutManager layoutManager = new LinearLayoutManager(this);
    layoutManager.setOrientation(OrientationHelper.VERTICAL);
    recyclerView.setLayoutManager(layoutManager);
    myRecycleViewAdapter = new EngineerRecycleViewAdapter(MainActivity.this,cfgCelllist);
    recyclerView.setAdapter(myRecycleViewAdapter);
    recyclerView.setItemAnimator(new DefaultItemAnimator());
    btClear = (Button)findViewById(R.id.btClear);
    btImport = (Button)findViewById(R.id.btImport);
    btClear.setOnClickListener(new MyClickListener());
    btImport.setOnClickListener(new MyClickListener());
  }
  class MyClickListener implements View.OnClickListener
  {
    @Override
    public void onClick(View v)
    {
      switch(v.getId())
      {
        case R.id.btImport:
          int result =readExcel(absFullPath+filepName);
          toast = Toast.makeText(MainActivity.this,String.valueOf(result),Toast.LENGTH_SHORT);
          toast.show();
          myRecycleViewAdapter.notifyDataSetChanged();
          break;
        case R.id.btClear:
          toast = Toast.makeText(MainActivity.this,"clear",Toast.LENGTH_SHORT);
          toast.show();
          break;
        default:
          break;
      }
    }
  }
  public void initData()
  {
    cfgCelllist = new ArrayList<EngineerCellInfo>();
    defaultItem = new EngineerCellInfo();
    defaultItem.item[0] = "Ci";
    defaultItem.item[1] = "Cellname";
    defaultItem.item[2] = "Longtitude";
    defaultItem.item[3] = "Attitude";
    defaultItem.item[4] = "Azimuth";
    cfgCelllist.add(defaultItem);
  }
  public void generateTestData()
  {
    EngineerCellInfo engineerCellInfo = new EngineerCellInfo();
    engineerCellInfo.item[0] = "134633";
    engineerCellInfo.item[1] = "xx小区";
    engineerCellInfo.item[2] = "103.89866";
    engineerCellInfo.item[3] = "30";
    engineerCellInfo.item[4] = "60";
    cfgCelllist.add(engineerCellInfo);
    writeToFile(absFullPath+filepName);
  }
  /* create folder if not exists*/
  public void createFolder(String strFolder)
  {
    File file = new File(strFolder);
    if (!file.exists())
    {
      if (file.mkdir())
      {
        return;
      }
    }
  }
  public void writeToFile(String cfgFileName)
  {
    File file = null;
    if (cfgCelllist.size()<=1)
    {
      return;
    }
    try {
      file = new File(cfgFileName);
      if(file.exists())
      {
        WritableWorkbook book = Workbook.createWorkbook(file);
        WritableSheet sheet = book.getSheet(DEFAULT_SHEET);
        for (int i = 1; i <cfgCelllist.size();i++)
        {
          for (int j=0;j<5;j++)
          {
            Label labelCi= new Label( j, i, cfgCelllist.get(i).item[j]);
            sheet.addCell(labelCi);
          }
        }
        book.write();
        book.close();
      }
    }
    catch(Exception e)
    {
      e.printStackTrace();
    }
  }
  /* 创建工参默认文件,如果文件不存在则创建*/
  public void createEngineerFile(String cfgFileName)
  {
    File file = null;
    try {
      file = new File(cfgFileName);
      if(file.exists()) {
        WritableWorkbook book = Workbook.createWorkbook(file);
        WritableSheet sheet = book.createSheet("task", DEFAULT_SHEET);
        for (int i = 0; i <cfgCelllist.size();i++)
        {
          for (int j=0;j<5;j++)
          {
            Label labelCi= new Label( j, i, cfgCelllist.get(i).item[j]);
            sheet.addCell(labelCi);
          }
        }
        book.write();
        book.close();
      }
    }
    catch(Exception e)
    {
      e.printStackTrace();
    }
  }
  /* read the cell file from engineer file */
  public int readExcel(String cfgFileName)
  {
    TextView tv = (TextView) findViewById(R.id.tvpath);
    try
    {
      File file = new File(cfgFileName);
      if (!file.exists())
      {
        return IMPORT_FILE_NOT_EXISTS;
      }
      InputStream inputStream = new FileInputStream(file);
      Workbook workbook = Workbook.getWorkbook(inputStream);
      Sheet sheet = workbook.getSheet(0);
      /* ignore the first row*/
      for (int i = 1; i < sheet.getRows();i++)
      {
        EngineerCellInfo engineerCellInfo = new EngineerCellInfo();
        for (int j = 0; j < 5;j++)
        {
          Cell cell = sheet.getCell(j,i);
          engineerCellInfo.item[j] = cell.getContents();
        }
        cfgCelllist.add(engineerCellInfo);
        //tv.setText(engineerCellInfo.toString());
      }
      workbook.close();
    }
    catch(Exception e)
    {
      Log.i(LOG_TAG,"file to find the file");
      return IMPORT_FILE_FAIL;
    }
    return IMPORT_FILE_SUCCESS;
  }
  public class EngineerCellInfo
  {
    public String item[]; //use array to store
    public EngineerCellInfo()
    {
      item = new String[5];
    }
    public String toString()
    {
      return item[0]+"-"+item[1]+"-"+item[2]+"-"+item[3]+"-"+item[4];
    }
  }
}
package com.npmaster.myexcel;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.npmaster.myexcel.MainActivity.EngineerCellInfo;
import java.util.List;
public class EngineerRecycleViewAdapter extends RecyclerView.Adapter<EngineerRecycleViewAdapter.MyViewHolder>
{
  private List<MainActivity.EngineerCellInfo> itemsData;
  private Context mContext;
  private LayoutInflater inflater;
  public EngineerRecycleViewAdapter(Context context, List<EngineerCellInfo> itemsData)
  {
    this.itemsData = itemsData;
    this.mContext=context;
    inflater=LayoutInflater.from(mContext);
  }
  public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType)
  {
    View view = inflater.inflate(R.layout.listitem, parent, false);
    MyViewHolder holder = new MyViewHolder(view);
    return holder;
  }
  @Override
  public void onBindViewHolder(final MyViewHolder holder, final int position)
  {
    holder.tvCId.setText(String.valueOf(itemsData.get(position).item[0]));
    holder.tvCellName.setText(String.valueOf(itemsData.get(position).item[1]));
    holder.tvlongtitude.setText(String.valueOf(itemsData.get(position).item[2]));
    holder.tvAttitude.setText(String.valueOf(itemsData.get(position).item[3]));
    holder.tvAzimuth.setText(String.valueOf(itemsData.get(position).item[4]));
  }
  @Override
  public int getItemCount()
  {
    return itemsData.size();
  }
  public static class MyViewHolder extends RecyclerView.ViewHolder
  {
    public TextView tvCId;
    public TextView tvCellName;
    public TextView tvlongtitude;
    public TextView tvAttitude;
    public TextView tvAzimuth;
    public MyViewHolder(View view)
    {
      super(view);
      tvCId = (TextView)view.findViewById(R.id.tvCid);
      tvCellName = (TextView)view.findViewById(R.id.tvCellName);
      tvlongtitude = (TextView)view.findViewById(R.id.tvLongtitude);
      tvAttitude = (TextView) view.findViewById(R.id.tvAttitude);
      tvAzimuth = (TextView) view.findViewById(R.id.tvAzimuth);
    }
  }
}

3. 使用的jxl 开发包 和recyclerview

compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support:recyclerview-v7:25.0.1'
testCompile 'junit:junit:4.12'
compile files('libs/jxl-2.6.jar')

以上所示是小编给大家介绍的Android 操作excel功能实例代码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

(0)

相关推荐

  • Android实现仿excel数据表格效果

    在没给大家分享代码之前,先给大家展示下效果图: 1.activity /** * 采购需求 * Created by Administrator on 2016/10/13. */ public class PurchaseRequireActivity extends BaseActivity implements PurchaseRequireView { @Bind(R.id.appTitle) TextView appTitle; @Bind(R.id.scrollLinearLayou

  • Android操作Excel文件的功能实现

    Android中操作Excel文件导出报表时主要采用开源库jxl,最早用在java上,但也可用于Android.与之类似的POI,因为依赖库众多,所以只能用于java,而不能用于Android. 使用jxl需要在Android工程中导入jxl.jar包,jxl可以完成Excel的基本读写操作,其支持与不支持的情况如下: 1.jxl只支持Excel2003格式,不支持Excel2007格式.即支持xls文件,不支持xlsx文件. 2.jxl不支持直接修改excel文件,但可通过复制新文件覆盖原文件

  • Android开发实现生成excel的方法详解

    本文实例讲述了Android开发实现生成excel的方法.分享给大家供大家参考,具体如下: 都说程序员不爽产品经理,其实有的时候遇到一些奇葩的后台开发人员也会很不顺心.最近项目有这样一个要求,要生成一个excel然后发邮件给客户.结果后台人员直接把这个功能扔给客户端,理由是后台不好实现.听到这也就只能自己实现了(分分钟就想来个螺旋王扣它头上).这篇博客讲下如下在android中生成excel表并存到本地.先看下生成后的效果图: 初始化数据 首先我们要先造下测试数据,这里我把数据写死在一个常量类C

  • android读取assets中Excel表格并显示

    本文实例为大家分享了android读取assets中Excel的具体代码,供大家参考,具体内容如下 1.在assets下放的excel表格,命名为excel.xls 2.添加读取excel需要的jar包"jxl.jar",assets是建在main级别目录下,建错地方找不到文件 3.读取excel中的文件 /*获取excel表格中的数据不能在主线程中调用 xlsName 为表格的名称 index 表示第几张表格 */ public ArrayList<ExcelBean>

  • Android应用读取Excel文件的方法

    本文实例讲述了Android应用读取Excel文件的方法.分享给大家供大家参考,具体如下: ReadExcel.java文件: public class ReadExcel extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState)

  • Android 中读取Excel文件实例详解

    Android 中读取Excel文件实例详解 最近有个需求需要在app内置数据,新来的产品扔给了我两个Excel表格就不管了(两个表格格式还不统一...),于是通过度娘等方法找到了Android中读取Excel表格文件的一种方法,记录一下. 闲话一下Excel中工作簿和工作表的区别: 工作簿中包含有工作表.工作簿可以由一张或多张工作表组成,一个工作簿就是一个EXCEL表格文件. 好了,开始读取表格文件吧. 前提 首先,我们假设需要读取的表格文件名字为test.xls, 位于assets根目录下.

  • android通过jxl读excel存入sqlite3数据库

    复制代码 代码如下: package com.demo.day20140228; import java.io.File;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.SQLException;import java.sql.Statement; import jxl.Cell;import jxl.Sheet;import jx

  • Android 操作excel功能实例代码

    学习app对excel的读写控制 1.界面设计 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id

  • C#通过NPOI操作Excel的实例代码

    C#操作Excel的方法有很多种,常见的有微软官方的OLE Automation,Apache的POI等.这里介绍的是POI翻译成C#的NPOI. POI是Apache的通过Java操作Office的一个API,可以对Excel,Word,PPT等进行操作,十分的强大.然后就被翻译成C#版本的NPOI了,和log4j与log4net很相似. 好像在NPOI的.net4.0版本之前是不支持office2007及以上的XML格式的,但是最新的版本已经支持了.只需要下载并引用下面五个程序集就能使用了.

  • Asp.Net用OWC操作Excel的实例代码

    复制代码 代码如下: string connstr = System.Configuration.ConfigurationManager.ConnectionStrings["DqpiHrConnectionString"].ToString();        SqlConnection conn = new SqlConnection(connstr);        SqlDataAdapter sda = new SqlDataAdapter(sql1.Text, conn)

  • Android条目拖拽删除功能实例代码

    项目中需求,要做条目条目拖拽删除效果,实际效果和QQ消息删除一样,侧滑有制定和删除. 效果图 第一步效果图 1.0自定义控件 SwipeLayout 继承FrameLayout重写里面三个构造方法,分别调用initView(). 2.0在布局中使用自定义控件 3.0在initView()方法中,创建拖拽辅辅助工具 ViewDragHelper() 该方法需要传入回调 MyCallBack() 4.0,创建MyCallBack()回调,继承ViewDragHelper.Callback 在回调中

  • 使用phpexcel类实现excel导入mysql数据库功能(实例代码)

    下载phpexcel文件,地址:phpexcel.codeplex.com/ 代码示例 require_once 'phpexcel/Classes/PHPExcel.php'; require_once 'phpexcel/Classes/PHPExcel/IOFactory.php'; require_once 'phpexcel/Classes/PHPExcel/Reader/Excel5.php'; $objReader = PHPExcel_IOFactory::createReade

  • Android 百度地图POI搜索功能实例代码

    在没介绍正文之前先给大家说下poi是什么意思. 由于工作的关系,经常在文件中会看到POI这三个字母的缩写,但是一直对POI的概念和含义没有很详细的去研究其背后代表的意思.今天下班之前,又看到了POI这三个字母,决定认认真真的搜索一些POI具体的含义. POI是英文的缩写,原来的单词是point of interest, 直译成中文就是兴趣点的意思.兴趣点这个词最早来自于导航地图厂商.地图厂商为了提供尽可能多的位置信息,花费了很大的精力去寻找诸如加油站,餐馆,酒店,景点等目的地,这些目的地其实都可

  • Android 自定义弹出菜单和对话框功能实例代码

    Android 开发当中,可能会存在许多自定义布局的需求,比如自定义弹出菜单(popupWindow),以及自定义对话框(Dialog). 话不多说,直接上图片. 先讲第一种,自定义PopUpWindow 1.popupWindow protected void showPopWindow(View view, final int pos){ WindowManager wm= (WindowManager) myContext.getSystemService(Context.WINDOW_S

  • Android模拟强制下线通知功能实例代码

    package com.itheima74.broadcastbestpractice; import android.content.Intent; import android.os.Bundle; import android.os.SystemClock; import android.support.v4.content.LocalBroadcastManager; import android.view.View; /** * 模拟强制下线通知 * 1.登录成功后10秒发送一条本地自

  • Android 指纹功能实例代码

    最近在做项目的时候遇到了添加打开app图像解锁的功能,自己嘴欠说现在都用指纹功能,自己给自己挖了一个坑,真是没谁了 从网上看了一些资料,但是给我demo考虑的不是很多,设备支不支持都没考虑,如果支持的话是否添加过指纹也不知道,其实方法都很简单. 废话不多说,贴上工具类和使用方法 package com.tsm.test; import android.annotation.TargetApi; import android.app.Activity; import android.app.Key

  • Android图片采样缩放功能实例代码

    为什么要对Android中的图片进行采样缩放呢? 是为了更加高效的加载Bitmap.假设通过imageView来显示图片,很多时候ImageView并没有图片的原始尺寸那么大,这时候把整张图片加载进来后再设给ImageView是没有必要的,因为ImagView并没有办法显示原始的图片. 所以我们可以使用BitmapFactory.Options按照一定的采样率加载缩小后的图片,将缩小后的图片在ImageView中显示,这样就能降低内存占用,在一定程度上避免OOM,提高bitma加载时候的性能.

随机推荐