zoukankan      html  css  js  c++  java
  • Microsoft SDK for Open XML Formats Technology Preview 发布

    下载地址:
    http://go.microsoft.com/?linkid=6899996

    帮助文档里有一个创建docx的例子,下面提供一个创建xlsx的例子

    using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.Office.DocumentFormat.OpenXml.Packaging;
    using System.IO;
    using System.Xml;


    namespace ConsoleApplication1
    {
        
    class Program
        
    {
            
    static void Main(string[] args)
            
    {           
                CreateNewXlsDocument(
    "c:\\temp.xlsx");
            }

            

            
    public static void CreateNewXlsDocument(string document)
            
    {         
                
    using (SpreadsheetDocument doc = SpreadsheetDocument.Create(document, SpreadsheetDocumentType.Workbook))
                
    {              

                    WorkbookPart mainPart 
    = doc.AddWorkbookPart();
                    WorksheetPart part 
    = mainPart.AddNewPart<WorksheetPart>();

                    
    string rid = mainPart.GetIdOfPart(part);

                    SetWorkBookContect(mainPart,rid);
                    SetWorkSheetContect(part);
                }

            }


            
    public static void SetWorkBookContect(WorkbookPart part,string rid)
            
    {
                
    const string xlsXml = @"<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?><workbook xmlns=""http://schemas.openxmlformats.org/spreadsheetml/2006/main"" xmlns:r=""http://schemas.openxmlformats.org/officeDocument/2006/relationships""><sheets><sheet name=""Sheet1"" sheetId=""1"" r:id=""{0}""/></sheets></workbook>";
                
    using (Stream stream = part.GetStream())
                
    {
                    
    byte[] buf = (new UTF8Encoding()).GetBytes(string.Format(xlsXml,rid));
                    stream.Write(buf, 
    0, buf.Length);
                }

            }



            
    public static void SetWorkSheetContect(WorksheetPart part)
            
    {
                
    const string xlsXml =
             
    @"<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes""?>
    <worksheet xmlns=""http://schemas.openxmlformats.org/spreadsheetml/2006/main"" xmlns:r=""http://schemas.openxmlformats.org/officeDocument/2006/relationships"">
      <sheetData>
        <row>
          <c t=""inlineStr"">
            <is>
              <t>测试</t>
            </is>
          </c>      
        </row>    
      </sheetData>
    </worksheet>
    ";
                           
                
    using (Stream stream = part.GetStream())
                
    {
                    
    byte[] buf = (new UTF8Encoding()).GetBytes(xlsXml);
                    stream.Write(buf, 
    0, buf.Length);
                }

            }


        }

    }

  • 相关阅读:
    linux环境变量(一)
    linux常用命令-ps
    linux实用小命令--查看文本内容
    postman tests常用方法
    Vue 中嵌套 Iframe,用postMessage通信 踩坑记
    [Vue warn]: Error in nextTick: "RangeError: Maximum call stack size exceeded"
    对STM32所用位带操作宏的详细剖析
    移植Modbus TCP二
    移植Modbus TCP一
    STM32位带操作
  • 原文地址:https://www.cnblogs.com/derek/p/773932.html
Copyright © 2011-2022 走看看