资源简介
1, 有Vs2008 ,VS2010实例代码
2,不需要安装office,不用com来调用了,免去了很多麻烦,调用office有时存在版本兼容问题,还要重新安装office很麻烦
3. 能够读取,生成,excel, word,功能真的很强大
代码片段和文件信息
/* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License Version 2.0
(the “License“); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing software
distributed under the License is distributed on an “AS IS“ BASIS
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==================================================================== */
using System;
using System.Text;
using System.IO;
using NPOI.HSSF.UserModel;
using NPOI.HPSF;
using NPOI.POIFS.FileSystem;
using NPOI.HSSF.Util;
using NPOI.SS.UserModel;
/* This sample is copied from poi/hssf/usermodel/examples/Hyperlink.java */
namespace AddHyperlinkInXls
{
class Program
{
static void Main(string[] args)
{
InitializeWorkbook();
////cell style for hyperlinks
////by default hyperlinks are blue and underlined
ICellstyle hlink_style = hssfworkbook.CreateCellstyle();
IFont hlink_font = hssfworkbook.CreateFont();
hlink_font.Underline = (byte)FontUnderlineType.SINGLE;
hlink_font.Color = HSSFColor.BLUE.index;
hlink_style.SetFont(hlink_font);
ICell cell;
ISheet sheet = hssfworkbook.CreateSheet(“Hyperlinks“);
//URL
cell = sheet.CreateRow(0).CreateCell(0);
cell.SetCellValue(“URL link“);
HSSFHyperlink link = new HSSFHyperlink(HyperlinkType.URL);
link.Address = (“http://poi.apache.org/“);
cell.Hyperlink = (link);
cell.Cellstyle = (hlink_style);
//link to a file in the current directory
cell = sheet.CreateRow(1).CreateCell(0);
cell.SetCellValue(“File link“);
link = new HSSFHyperlink(HyperlinkType.FILE);
link.Address = (“link1.xls“);
cell.Hyperlink = (link);
cell.Cellstyle = (hlink_style);
//e-mail link
cell = sheet.CreateRow(2).CreateCell(0);
cell.SetCellValue(“Email link“);
link = new HSSFHyperlink(HyperlinkType.EMAIL);
//note if subject contains white spaces make sure they are url-encoded
link.Address = (“mailto:poi@apache.org?subject=Hyperlinks“);
cell.Hyperlink = (link);
cell.Cellstyle = (hlink_style);
//link to a place in this
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 200704 2013-03-06 07:13 npoi\dotnet2\ICSharpCode.SharpZipLib.dll
文件 1624064 2013-03-06 07:17 npoi\dotnet2\NPOI.dll
文件 387072 2013-03-06 07:17 npoi\dotnet2\NPOI.OOxm
文件 79872 2013-03-06 07:17 npoi\dotnet2\NPOI.Openxm
文件 120 2013-03-06 07:13 npoi\dotnet2\NPOI.Openxm
文件 1316864 2013-03-06 07:17 npoi\dotnet2\NPOI.Openxm
文件 2144246 2013-03-06 07:17 npoi\dotnet2\NPOI.xm
文件 200704 2013-03-06 07:13 npoi\dotnet3.5\ICSharpCode.SharpZipLib.dll
文件 1624064 2013-03-06 07:17 npoi\dotnet3.5\NPOI.dll
文件 387072 2013-03-06 07:17 npoi\dotnet3.5\NPOI.OOxm
文件 79872 2013-03-06 07:17 npoi\dotnet3.5\NPOI.Openxm
文件 120 2013-03-06 07:13 npoi\dotnet3.5\NPOI.Openxm
文件 1316864 2013-03-06 07:17 npoi\dotnet3.5\NPOI.Openxm
文件 2144246 2013-03-06 07:17 npoi\dotnet3.5\NPOI.xm
文件 200704 2013-03-06 07:13 npoi\dotnet4\ICSharpCode.SharpZipLib.dll
文件 1624064 2013-03-06 07:17 npoi\dotnet4\NPOI.dll
文件 387072 2013-03-06 07:17 npoi\dotnet4\NPOI.OOxm
文件 79872 2013-03-06 07:17 npoi\dotnet4\NPOI.Openxm
文件 1316864 2013-03-06 07:17 npoi\dotnet4\NPOI.Openxm
文件 2145032 2013-03-06 07:13 npoi\dotnet4\NPOI.xm
文件 4432 2013-03-05 08:10 npoi\examples\hssf\AddHyperli
文件 257 2013-03-05 08:10 npoi\examples\hssf\AddHyperli
文件 4498 2013-03-05 08:10 npoi\examples\hssf\AddHyperli
文件 1446 2013-03-05 08:10 npoi\examples\hssf\AddHyperli
文件 4398 2013-03-05 08:10 npoi\examples\hssf\ApplyFontInXls\ApplyFontInXls.csproj
文件 257 2013-03-05 08:10 npoi\examples\hssf\ApplyFontInXls\ApplyFontInXls.csproj.vspscc
文件 4594 2013-03-05 08:10 npoi\examples\hssf\ApplyFontInXls\Program.cs
文件 1440 2013-03-05 08:10 npoi\examples\hssf\ApplyFontInXls\Properties\AssemblyInfo.cs
文件 4441 2013-03-05 08:10 npoi\examples\hssf\AutoSizeColumnInXls\AutoSizeColumnInXls.csproj
文件 257 2013-03-05 08:10 npoi\examples\hssf\AutoSizeColumnInXls\AutoSizeColumnInXls.csproj.vspscc
............此处省略475个文件信息
- 上一篇:C#打开电脑摄像头
- 下一篇:PDFView PDF文件处理59003
相关资源
- 读取mdb输出到Excel
- 借助WPS将Word文档转换为PPT文档
- VSTO对Word的开发教程
- 各种方式对excel导出导入
- excel转化成datatable 并加载到datagridvi
- 读取Excel表格内容到treeview
- ADO.NET操作EXCEL
- excel导入 导出分析源码
- Aspose.Words.dll 18.4破解版
- C# 创建doc文档(基于Microsoft.Office.In
- C#文件流读取CSV文件
- 验证EXCEL导入模板是否符合标准
- C#将Excel导入到Access数据库表(winFor
- Wpf生成word文档
- c#使用openoffice组件操作文件
- C# NPOI导出Excel,Words转PDF
- 自己用C#写的Word转Html工具,亲测可用
- c# 调用word 的vba的宏
- ASP.NET(c#) 从零动态生成Word文件用程
- c#导出excel支持多sheet导出,可自定义
- 2012我的C#全能Excel操作无需Office不使用
- .net批量打印word源码C#_VS2012
- VS 2008 C#读写excel文件
- 安卓使用poi XWPFDocument读取及修改wor
- 2021最新版NPOI插件
- C#读写EXCEl支持xlsx
- wpf 仿office
- NPOI-Excel导入导出源码+
- Excel导入SQLServer数据库工具含源码
- C#DocX组件操作Word源码
评论
共有 条评论