using System;
using System.Windows.Forms;
using System.IO;
using System.Net;
using Baidu.Aip.Ocr;
using WinFormsApp1.Properties;
namespace WinFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.textBox1.Text = Settings.Default.API_Key;
this.textBox2.Text = Settings.Default.Secret_Key;
}
void Init()
{
this.AllowDrop = true; //设置为允许拖拽
}
private void listView1_DragOver(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.All;
}
private void ListView1_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effect = DragDropEffects.Link;
}
else
{
e.Effect = DragDropEffects.None;
}
}
string str01;//该符号用来标记是否出现错误
private void ListView1_DragDrop(object sender, DragEventArgs e)
{
IDataObject ido = e.Data;
if (ido.GetDataPresent(DataFormats.FileDrop)) //如果拖动的数据是文件类型
{
string[] filepaths = (string[])ido.GetData(DataFormats.FileDrop); //获取文件的路径
C# winform代码 调用百度表格识别API 自动下载为excel文件到另存为路径
最新推荐文章于 2024-01-13 20:32:40 发布
本文介绍了如何在C# Winform应用中利用百度API识别表格,将识别结果导出为Excel文件。通过输入文本框保留上次输入,实现了扫描版PDF表格的自动识别和下载功能。
摘要由CSDN通过智能技术生成