web-dev-qa-db-ja.com

Excel OleDbを使用してシートの順序でシート名を取得する

OleDbを使用して、多くのシートを含むExcelブックから読み取ります。

シート名を読む必要がありますが、スプレッドシートで定義されている順序で必要です。そのため、このようなファイルがある場合、

|_____|_____|____|____|____|____|____|____|____|
|_____|_____|____|____|____|____|____|____|____|
|_____|_____|____|____|____|____|____|____|____|
\__GERMANY__/\__UK__/\__IRELAND__/

次に、辞書を取得する必要があります

1="GERMANY", 
2="UK", 
3="IRELAND"

OleDbConnection.GetOleDbSchemaTable()を使用してみました。名前のリストが表示されますが、アルファベット順にソートされています。アルファソートは、特定の名前がどのシート番号に対応するのかわからないことを意味します。だから私は得る;

GERMANY, IRELAND, UK

UKIRELANDの順序が変更されました。

ソートする必要があるのは、ユーザーに名前またはインデックスでデータの範囲を選択させる必要があるためです。 「ドイツからアイルランドへのすべてのデータ」または「シート1からシート3のデータ」を要求できます。

どんなアイデアでも大歓迎です。

オフィスの相互運用クラスを使用できれば、これは簡単です。残念ながら、WindowsサービスやASP.NETサイトなどの非対話型環境では相互運用クラスが確実に動作しないため、OLEDBを使用する必要があったため、できません。

101
Steve Cooper

これは実際のMSDNドキュメントでは見つかりませんが、フォーラムのモデレーターは言いました

OLEDBがExcelのようにシートの順序を保持しないのではないかと心配しています

シート順序のExcelシート名

これは十分な一般的な要件であり、適切な回避策があるようです。

17
Jeremy Breece

0からCount of names -1のシートをループするだけではできませんか?そうすれば、正しい順序でそれらを取得する必要があります。

編集

コメントを通して、Interopクラスを使用してシート名を取得することには多くの懸念があることがわかりました。したがって、OLEDBを使用してそれらを取得する例を次に示します。

/// <summary>
/// This method retrieves the Excel sheet names from 
/// an Excel workbook.
/// </summary>
/// <param name="excelFile">The Excel file.</param>
/// <returns>String[]</returns>
private String[] GetExcelSheetNames(string excelFile)
{
    OleDbConnection objConn = null;
    System.Data.DataTable dt = null;

    try
    {
        // Connection String. Change the Excel file to the file you
        // will search.
        String connString = "Provider=Microsoft.Jet.OLEDB.4.0;" + 
          "Data Source=" + excelFile + ";Extended Properties=Excel 8.0;";
        // Create connection object by using the preceding connection string.
        objConn = new OleDbConnection(connString);
        // Open connection with the database.
        objConn.Open();
        // Get the data table containg the schema guid.
        dt = objConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);

        if(dt == null)
        {
           return null;
        }

        String[] excelSheets = new String[dt.Rows.Count];
        int i = 0;

        // Add the sheet name to the string array.
        foreach(DataRow row in dt.Rows)
        {
           excelSheets[i] = row["TABLE_NAME"].ToString();
           i++;
        }

        // Loop through all of the sheets if you want too...
        for(int j=0; j < excelSheets.Length; j++)
        {
            // Query each Excel sheet.
        }

        return excelSheets;
   }
   catch(Exception ex)
   {
       return null;
   }
   finally
   {
      // Clean up.
      if(objConn != null)
      {
          objConn.Close();
          objConn.Dispose();
      }
      if(dt != null)
      {
          dt.Dispose();
      }
   }
}

CodeProjectの Article から抽出。

74
James

上記のコードはExcel 2007のシート名のリストを抽出する手順をカバーしていないため、次のコードはExcel(97-2003)とExcel 2007の両方に適用できます。

public List<string> ListSheetInExcel(string filePath)
{
   OleDbConnectionStringBuilder sbConnection = new OleDbConnectionStringBuilder();
   String strExtendedProperties = String.Empty;
   sbConnection.DataSource = filePath;
   if (Path.GetExtension(filePath).Equals(".xls"))//for 97-03 Excel file
   {
      sbConnection.Provider = "Microsoft.Jet.OLEDB.4.0";
      strExtendedProperties = "Excel 8.0;HDR=Yes;IMEX=1";//HDR=ColumnHeader,IMEX=InterMixed
   }
   else if (Path.GetExtension(filePath).Equals(".xlsx"))  //for 2007 Excel file
   {
      sbConnection.Provider = "Microsoft.ACE.OLEDB.12.0";
      strExtendedProperties = "Excel 12.0;HDR=Yes;IMEX=1";
   }
   sbConnection.Add("Extended Properties",strExtendedProperties);
   List<string> listSheet = new List<string>();
   using (OleDbConnection conn = new OleDbConnection(sbConnection.ToString()))
   {
     conn.Open();
     DataTable dtSheet = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);         
     foreach (DataRow drSheet in dtSheet.Rows)
     {
        if (drSheet["TABLE_NAME"].ToString().Contains("$"))//checks whether row contains '_xlnm#_FilterDatabase' or sheet name(i.e. sheet name always ends with $ sign)
        {
             listSheet.Add(drSheet["TABLE_NAME"].ToString());
        } 
     }
  }
 return listSheet;
}

上記の関数は、両方のExcelタイプ(97,2003,2007)の特定のExcelファイルのシートのリストを返します。

23
user1082916

別の方法:

xls(x)ファイルは、*。Zipコンテナに保存された* .xmlファイルの単なるコレクションです。フォルダーdocPropsでファイル「app.xml」を解凍します。

<?xml version="1.0" encoding="UTF-8" standalone="true"?>
-<Properties xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties">
<TotalTime>0</TotalTime>
<Application>Microsoft Excel</Application>
<DocSecurity>0</DocSecurity>
<ScaleCrop>false</ScaleCrop>
-<HeadingPairs>
  -<vt:vector baseType="variant" size="2">
    -<vt:variant>
      <vt:lpstr>Arbeitsblätter</vt:lpstr>
    </vt:variant>
    -<vt:variant>
      <vt:i4>4</vt:i4>
    </vt:variant>
  </vt:vector>
</HeadingPairs>
-<TitlesOfParts>
  -<vt:vector baseType="lpstr" size="4">
    <vt:lpstr>Tabelle3</vt:lpstr>
    <vt:lpstr>Tabelle4</vt:lpstr>
    <vt:lpstr>Tabelle1</vt:lpstr>
    <vt:lpstr>Tabelle2</vt:lpstr>
  </vt:vector>
</TitlesOfParts>
<Company/>
<LinksUpToDate>false</LinksUpToDate>
<SharedDoc>false</SharedDoc>
<HyperlinksChanged>false</HyperlinksChanged>
<AppVersion>14.0300</AppVersion>
</Properties>

このファイルはドイツ語のファイルです(Arbeitsblätter= worksheets)。テーブル名(Tabelle3など)は正しい順序になっています。これらのタグを読むだけです;)

よろしく

8
kraeppy

@kraeppyからの回答に記載されている情報を使用して、以下の関数を作成しました( https://stackoverflow.com/a/19930386/2617732 )。これには、.net framework v4.5を使用する必要があり、System.IO.Compressionへの参照が必要です。これはxlsxファイルでのみ機能し、古いxlsファイルでは機能しません。

    using System.IO.Compression;
    using System.Xml;
    using System.Xml.Linq;

    static IEnumerable<string> GetWorksheetNamesOrdered(string fileName)
    {
        //open the Excel file
        using (FileStream data = new FileStream(fileName, FileMode.Open))
        {
            //unzip
            ZipArchive archive = new ZipArchive(data);

            //select the correct file from the archive
            ZipArchiveEntry appxmlFile = archive.Entries.SingleOrDefault(e => e.FullName == "docProps/app.xml");

            //read the xml
            XDocument xdoc = XDocument.Load(appxmlFile.Open());

            //find the titles element
            XElement titlesElement = xdoc.Descendants().Where(e => e.Name.LocalName == "TitlesOfParts").Single();

            //extract the worksheet names
            return titlesElement
                .Elements().Where(e => e.Name.LocalName == "vector").Single()
                .Elements().Where(e => e.Name.LocalName == "lpstr")
                .Select(e => e.Value);
        }
    }
6
rdans

これは短く、速く、安全で、使いやすいです...

public static List<string> ToExcelsSheetList(string excelFilePath)
{
    List<string> sheets = new List<string>();
    using (OleDbConnection connection = 
            new OleDbConnection((excelFilePath.TrimEnd().ToLower().EndsWith("x")) 
            ? "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='" + excelFilePath + "';" + "Extended Properties='Excel 12.0 Xml;HDR=YES;'"
            : "provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + excelFilePath + "';Extended Properties=Excel 8.0;"))
    {
        connection.Open();
        DataTable dt = connection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
        foreach (DataRow drSheet in dt.Rows)
            if (drSheet["TABLE_NAME"].ToString().Contains("$"))
            {
                string s = drSheet["TABLE_NAME"].ToString();
                sheets.Add(s.StartsWith("'")?s.Substring(1, s.Length - 3): s.Substring(0, s.Length - 1));
            }
        connection.Close();
    }
    return sheets;
}

@deathAprilのアイデアは、シートに1_Germany、2_UK、3_IRELANDという名前を付けるのが好きです。また、何百ものシートに対してこの名前変更を行うという問題もありました。シート名の変更に問題がない場合は、このマクロを使用して変更できます。すべてのシート名を変更するのに数秒もかかりません。残念ながら、ODBC、OLEDBはascによるシート名の順序を返します。それに代わるものはありません。 COMを使用するか、名前を適切な名前に変更する必要があります。

Sub Macro1()
'
' Macro1 Macro
'

'
Dim i As Integer
For i = 1 To Sheets.Count
 Dim prefix As String
 prefix = i
 If Len(prefix) < 4 Then
  prefix = "000"
 ElseIf Len(prefix) < 3 Then
  prefix = "00"
 ElseIf Len(prefix) < 2 Then
  prefix = "0"
 End If
 Dim sheetName As String
 sheetName = Sheets(i).Name
 Dim names
 names = Split(sheetName, "-")
 If (UBound(names) > 0) And IsNumeric(names(0)) Then
  'do nothing
 Else
  Sheets(i).Name = prefix & i & "-" & Sheets(i).Name
 End If
Next

End Sub

更新:BIFFに関する@SidHolandのコメントを読んだ後、アイデアが閃きました。次の手順はコードで実行できます。シート名を同じ順序で取得するために本当にそれを実行したいかどうかはわかりません。コードを使用してこれを行うために支援が必要な場合はお知らせください。

1. Consider XLSX as a Zip file. Rename *.xlsx into *.Zip
2. Unzip
3. Go to unzipped folder root and open /docprops/app.xml
4. This xml contains the sheet name in the same order of what you see.
5. Parse the xml and get the sheet names

更新:別の解決策-ここではNPOIが役立つかもしれません http://npoi.codeplex.com/

 FileStream file = new FileStream(@"yourexcelfilename", FileMode.Open, FileAccess.Read);

      HSSFWorkbook  hssfworkbook = new HSSFWorkbook(file);
        for (int i = 0; i < hssfworkbook.NumberOfSheets; i++)
        {
            Console.WriteLine(hssfworkbook.GetSheetName(i));
        }
        file.Close();

このソリューションはxlsで機能します。 xlsxは試しませんでした。

おかげで、

エセン

2
Esen

これは私のために働いた。ここから盗まれた: Excelブックの最初のページの名前を取得する方法

object opt = System.Reflection.Missing.Value;
Excel.Application app = new Microsoft.Office.Interop.Excel.Application();
Excel.Workbook workbook = app.Workbooks.Open(WorkBookToOpen,
                                         opt, opt, opt, opt, opt, opt, opt,
                                         opt, opt, opt, opt, opt, opt, opt);
Excel.Worksheet worksheet = workbook.Worksheets[1] as Microsoft.Office.Interop.Excel.Worksheet;
string firstSheetName = worksheet.Name;
1
eviljack

これを試して。シート名を順番に取得するコードを次に示します。

private Dictionary<int, string> GetExcelSheetNames(string fileName)
{
    Excel.Application _Excel = null;
    Excel.Workbook _workBook = null;
    Dictionary<int, string> excelSheets = new Dictionary<int, string>();
    try
    {
        object missing = Type.Missing;
        object readOnly = true;
        Excel.XlFileFormat.xlWorkbookNormal
        _Excel = new Excel.ApplicationClass();
        _Excel.Visible = false;
        _workBook = _Excel.Workbooks.Open(fileName, 0, readOnly, 5, missing,
            missing, true, Excel.XlPlatform.xlWindows, "\\t", false, false, 0, true, true, missing);
        if (_workBook != null)
        {
            int index = 0;
            foreach (Excel.Worksheet sheet in _workBook.Sheets)
            {
                // Can get sheet names in order they are in workbook
                excelSheets.Add(++index, sheet.Name);
            }
        }
    }
    catch (Exception e)
    {
        return null;
    }
    finally
    {
        if (_Excel != null)
        {

            if (_workBook != null)
                _workBook.Close(false, Type.Missing, Type.Missing);
            _Excel.Application.Quit();
        }
        _Excel = null;
        _workBook = null;
    }
    return excelSheets;
}
1
Ravi Shankar

MSDNによると、Excel内のスプレッドシートの場合、Excelファイルは実際のデータベースではないため機能しない可能性があります。そのため、ワークブックでの視覚化の順序でシート名を取得することはできません。

Interopを使用して視覚的な外観に従ってシート名を取得するコード:

Microsoft Excel 12.0 Object Libraryへの参照を追加します。

次のコードは、ソートされた名前ではなく、ワークブックに保存されている実際の順序でシート名を与えます。

サンプルコード:

using Microsoft.Office.Interop.Excel;

string filename = "C:\\romil.xlsx";

object missing = System.Reflection.Missing.Value;

Microsoft.Office.Interop.Excel.Application Excel = new Microsoft.Office.Interop.Excel.Application();

Microsoft.Office.Interop.Excel.Workbook wb =Excel.Workbooks.Open(filename,  missing,  missing,  missing,  missing,missing,  missing,  missing,  missing,  missing,  missing,  missing,  missing,  missing,  missing);

ArrayList sheetname = new ArrayList();

foreach (Microsoft.Office.Interop.Excel.Worksheet  sheet in wb.Sheets)
{
    sheetname.Add(sheet.Name);
}
0

App.xmlの順序がシートの順序であることが保証されているというドキュメントはありません。おそらくそうですが、OOXML仕様には準拠していません。

一方、workbook.xmlファイルにはsheetId属性が含まれています。この属性は、1からシート数までのシーケンスを決定します。これは、OOXML仕様に従っています。 workbook.xmlは、シートのシーケンスが保持される場所として記述されます。

したがって、XLSXから抽出したworkbook.xmlを読むことをお勧めします。 app.xmlではありません。 docProps/app.xmlの代わりに、xl/workbook.xmlを使用して、次のように要素を確認します-

`

<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
  <fileVersion appName="xl" lastEdited="5" lowestEdited="5" rupBuild="9303" /> 
  <workbookPr defaultThemeVersion="124226" /> 
- <bookViews>
  <workbookView xWindow="120" yWindow="135" windowWidth="19035" windowHeight="8445" /> 
  </bookViews>
- <sheets>
  <sheet name="By song" sheetId="1" r:id="rId1" /> 
  <sheet name="By actors" sheetId="2" r:id="rId2" /> 
  <sheet name="By pit" sheetId="3" r:id="rId3" /> 
  </sheets>
- <definedNames>
  <definedName name="_xlnm._FilterDatabase" localSheetId="0" hidden="1">'By song'!$A$1:$O$59</definedName> 
  </definedNames>
  <calcPr calcId="145621" /> 
  </workbook>

`

0
Vern Hamberg