Skip to content

Commit 9a601c4

Browse files
author
段军利
committed
加载excel文件并用log4net记录
1 parent 097ae33 commit 9a601c4

24 files changed

+193625
-0
lines changed

.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Thumbs.db
2+
*.obj
3+
*.exe
4+
*.pdb
5+
*.user
6+
*.aps
7+
*.pch
8+
*.vspscc
9+
*_i.c
10+
*_p.c
11+
*.ncb
12+
*.suo
13+
*.sln.docstates
14+
*.tlb
15+
*.tlh
16+
*.bak
17+
*.cache
18+
*.ilk
19+
*.log
20+
*.cache
21+
[Bb]in
22+
[Dd]ebug*/
23+
node_modules/
24+
SysErrLog/
25+
*.lib
26+
*.sbr
27+
obj/
28+
.*/
29+
[Rr]elease*/
30+
_ReSharper*/
31+
[Tt]est[Rr]esult*
32+
*.vssscc
33+
$tf*/
34+
*.sublime-workspace

ConsoleApp1/ConsoleApp1.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27004.2009
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp1", "ConsoleApp1\ConsoleApp1.csproj", "{F7223F06-A08D-4A6A-B23F-53FD1267D87C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{F7223F06-A08D-4A6A-B23F-53FD1267D87C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{F7223F06-A08D-4A6A-B23F-53FD1267D87C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{F7223F06-A08D-4A6A-B23F-53FD1267D87C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{F7223F06-A08D-4A6A-B23F-53FD1267D87C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {E584C31D-4916-4AE5-B948-D4F483005A0D}
24+
EndGlobalSection
25+
EndGlobal

ConsoleApp1/ConsoleApp1/App.config

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<configSections>
4+
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
5+
</configSections>
6+
<appSettings>
7+
<add key="excelfile" value="datafile\\newexpertlist.xlsx"/>
8+
<add key="siteconfig" value="config\\site.config"/>
9+
</appSettings>
10+
<startup>
11+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
12+
</startup>
13+
<log4net>
14+
<root>
15+
<level value="WARN" />
16+
<appender-ref ref="LogFileAppender" />
17+
<appender-ref ref="ConsoleAppender" />
18+
</root>
19+
<logger name="TestLogging">
20+
<level value="DEBUG"/>
21+
</logger>
22+
<appender name="LogFileAppender" type="log4net.Appender.FileAppender" >
23+
<param name="File" value="log-file.txt" />
24+
<param name="AppendToFile" value="true" />
25+
<layout type="log4net.Layout.PatternLayout">
26+
<param name="Header" value="[Header] "/>
27+
<param name="Footer" value="[Footer] "/>
28+
<param name="ConversionPattern" value="%d [%t] %-5p %c [%x] - %m%n" />
29+
</layout>
30+
<filter type="log4net.Filter.LevelRangeFilter">
31+
<param name="LevelMin" value="DEBUG" />
32+
<param name="LevelMax" value="FATAL" />
33+
</filter>
34+
</appender>
35+
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender" >
36+
<layout type="log4net.Layout.PatternLayout">
37+
<param name="ConversionPattern" value="%d [%t] %-5p %c [%3] - %m%n" />
38+
</layout>
39+
</appender>
40+
</log4net>
41+
</configuration>
+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{F7223F06-A08D-4A6A-B23F-53FD1267D87C}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>ConsoleApp1</RootNamespace>
10+
<AssemblyName>ConsoleApp1</AssemblyName>
11+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PlatformTarget>AnyCPU</PlatformTarget>
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<DebugType>pdbonly</DebugType>
28+
<Optimize>true</Optimize>
29+
<OutputPath>bin\Release\</OutputPath>
30+
<DefineConstants>TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
</PropertyGroup>
34+
<ItemGroup>
35+
<Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
36+
<HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
37+
</Reference>
38+
<Reference Include="System" />
39+
<Reference Include="System.Configuration" />
40+
<Reference Include="System.Core" />
41+
<Reference Include="System.Xml.Linq" />
42+
<Reference Include="System.Data.DataSetExtensions" />
43+
<Reference Include="Microsoft.CSharp" />
44+
<Reference Include="System.Data" />
45+
<Reference Include="System.Net.Http" />
46+
<Reference Include="System.Xml" />
47+
</ItemGroup>
48+
<ItemGroup>
49+
<Compile Include="Program.cs" />
50+
<Compile Include="Properties\AssemblyInfo.cs" />
51+
</ItemGroup>
52+
<ItemGroup>
53+
<None Include="App.config" />
54+
<None Include="config\site.config" />
55+
<None Include="datafile\newexpertlist.xlsx" />
56+
<None Include="packages.config" />
57+
</ItemGroup>
58+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
59+
</Project>

ConsoleApp1/ConsoleApp1/Program.cs

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
using log4net;
2+
using log4net.Config;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Configuration;
6+
using System.Data;
7+
using System.Data.OleDb;
8+
using System.IO;
9+
using System.Linq;
10+
using System.Text;
11+
using System.Threading.Tasks;
12+
using System.Xml;
13+
14+
namespace ConsoleApp1
15+
{
16+
/// <summary>
17+
/// 读取excel文件
18+
/// </summary>
19+
public class Program
20+
{
21+
static void Main(string[] args)
22+
{
23+
XmlConfigurator.Configure();
24+
ILog log = LogManager.GetLogger("TestLogging");//获取一个日志记录器
25+
log.Info("程序运行开始记录日志");
26+
27+
DirectoryInfo d = Directory.CreateDirectory(AppDomain.CurrentDomain.BaseDirectory).Parent.Parent;
28+
try
29+
{
30+
#region 读取配置文件
31+
XmlDocument xml = new XmlDocument();
32+
string siteconfigpath = d.FullName + "\\" + ConfigurationManager.AppSettings["siteconfig"];
33+
xml.Load(siteconfigpath);
34+
35+
XmlNode xn = xml.SelectSingleNode("siteconfig");
36+
37+
if ("TRUE".Equals(xn["addExpertData"].InnerText.ToUpper()))
38+
{
39+
log.Info("读取Excel数据文件");
40+
xn["addExpertData"].InnerXml = "false";
41+
xml.Save(siteconfigpath);
42+
#region 读取专家数据
43+
DataSet ds = ExcelToDS(d.FullName + "\\" + ConfigurationManager.AppSettings["excelfile"]);
44+
foreach (DataRow item in ds.Tables["table1"].Rows)
45+
{
46+
if (!String.IsNullOrWhiteSpace(item["专家id"].ToString()))
47+
{
48+
log.Info("专家id:" + item["专家id"]);
49+
log.Info("专家名字:" + item["专家名字"]);
50+
log.Info("专家所在地区:" + item["专家所在地区"]);
51+
log.Info("专家所在医院:" + item["专家所在医院"]);
52+
}
53+
}
54+
#endregion
55+
}
56+
else
57+
{
58+
log.Info("不读取Excel数据文件");
59+
}
60+
#endregion
61+
}
62+
catch (Exception e)
63+
{
64+
log.Error(e.Message);
65+
}
66+
log.Info("程序结束");
67+
68+
Console.ReadKey();
69+
}
70+
/// <summary>
71+
/// Excel表格转为DataSet
72+
///
73+
/// </summary>
74+
/// <param name="Path"></param>
75+
/// <returns></returns>
76+
public static DataSet ExcelToDS(string Path)
77+
{
78+
string strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + Path + ";Extended Properties=Excel 12.0;";
79+
OleDbConnection conn = new OleDbConnection(strConn);
80+
conn.Open();
81+
string strExcel = "";
82+
OleDbDataAdapter myCommand = null;
83+
DataSet ds = null;
84+
strExcel = "select distinct * from [Sheet1$]";
85+
myCommand = new OleDbDataAdapter(strExcel, strConn);
86+
ds = new DataSet();
87+
myCommand.Fill(ds, "table1");
88+
return ds;
89+
}
90+
}
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// 有关程序集的一般信息由以下
6+
// 控制。更改这些特性值可修改
7+
// 与程序集关联的信息。
8+
[assembly: AssemblyTitle("ConsoleApp1")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("ConsoleApp1")]
13+
[assembly: AssemblyCopyright("Copyright © 2018")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// 将 ComVisible 设置为 false 会使此程序集中的类型
18+
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
19+
//请将此类型的 ComVisible 特性设置为 true。
20+
[assembly: ComVisible(false)]
21+
22+
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
23+
[assembly: Guid("f7223f06-a08d-4a6a-b23f-53fd1267d87c")]
24+
25+
// 程序集的版本信息由下列四个值组成:
26+
//
27+
// 主版本
28+
// 次版本
29+
// 生成号
30+
// 修订号
31+
//
32+
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
33+
// 方法是按如下所示使用“*”: :
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0"?>
2+
<siteconfig>
3+
<addExpertData>false</addExpertData>
4+
</siteconfig>
Binary file not shown.
Binary file not shown.
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="log4net" version="2.0.8" targetFramework="net461" />
4+
</packages>
Binary file not shown.

0 commit comments

Comments
 (0)