Sort Score
Result 10 results
Languages All
Labels All
Results 8,401 - 8,410 of 11,963 for

format

(0.44 sec)
  1. Chuyển đổi dữ liệu Excel và CSV trong C# | XLSX...

    Chuyển đổi định dạng XLS & XLSX sang CSV và CSV sang Excel trong các ứng dụng Java. Tự động chuyển đổi tệp của bạn bằng API Java để chuyển đổi tài liệu....PageNumber = 2, PagesCount = 1, Format = SpreadsheetFileType.Csv //...// Specify the conversion format }; converter.Convert(outputFile...

    blog.groupdocs.com/vi/conversion/convert-excel-...
  2. C#を使用してデータベースファイルからデータを抽出する

    データベース は、ほとんどのアプリケーションの不可欠な部分であると見なされています。デスクトップ、Web、またはモバイルアプリケーションのいずれであっても、データベースはデータの保存、アクセス、および操作において重要な役割を果たします。あなたのためにデータベースを作成して管理することを可能にする多くのデータベース管理システムがあります。 ただし、データベース管理システムをインストールしたり、SQLクエリを記述したりせずに、データベースファイル(**。db **ファイル) からデータを抽出する方法が必要な場合があります。このような場合、データベースファイルをどのように解析し、そこからデータを取得しますか? この記事では、SQLクエリを記述せずにSQLiteデータベースのテーブルからデータを簡単に抽出できることを示します。 ADO.NET。 SQLiteデータベース(.db) のテーブルからデータを抽出する手順 1. VisualStudioで新しいプロジェクトを作成します。 2. NuGet から GroupDocs.Parser for.NET をインストールします。 3. 次の名前空間を追加します。 using System; using System.Collections.Generic; using System.IO; using GroupDocs.Parser.Data; using GroupDocs.Parser.Options; 4. 接続文字列を準備します。 string connectionString = string.Format("Provider=System.Data.Sqlite;Data Source={0};Version=3;", "sqlite.db"); 5. パーサー オブジェクトにデータベースファイルをロードします。 using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // あなたのコードはここに行きます } 6. Parser.GetToc メソッドを使用して、データベース内のテーブルのリストを取得します。 // テーブルのリストを取得する IEnumerable toc = parser.GetToc(); 7. テーブルを繰り返し処理し、データを抽出します。 // テーブルを反復処理します foreach (TocItem i in toc) { // テーブル名を印刷する Console....Format("Provider=System.Data.Sqlite;Data...string connectionString = string.Format("Provider=System.Data.Sqlite;Data...

    blog.groupdocs.com/ja/parser/extract-data-from-...
  3. 用 Java 從電子書中提取圖像 | EPUB、PDF、FB2、CHM

    使用 Java API 以編程方式從 EPUB、PDF、FB2、CHM 電子書中提取圖像以進行文檔解析。以 JPG、PNG、WebP、GIF 或 BMP 格式保存圖像。...format("%d.jpeg", imageNumber)), options);...// Provide different eBook formats to the Parser constructor to...

    blog.groupdocs.com/zh-hant/parser/extract-image...
  4. C#에서 Excel 및 CSV 데이터 변환 | XLSX에서 CSV로 - CSV에서 XLS로

    Java 응용 프로그램 내에서 XLS 및 XLSX를 CSV로 변환하고 CSV를 Excel 형식으로 변환합니다. 문서 변환을 위해 Java API를 사용하여 파일 변환을 자동화하십시오....PageNumber = 2, PagesCount = 1, Format = SpreadsheetFileType.Csv //...// Specify the conversion format }; converter.Convert(outputFile...

    blog.groupdocs.com/ko/conversion/convert-excel-...
  5. Edit File XML | Pengeditan Online & Pendekatan ...

    Temukan cara efisien untuk mengedit file XML. Edit file XML secara online atau lakukan secara terprogram menggunakan C# & Java....XML yang telah diedit dalam format DOCX dan TXT editor.Save(afterEdit...XML yang telah diedit dalam format DOCX dan TXT editor.save(afterEdit...

    blog.groupdocs.com/id/editor/edit-xml-files/
  6. Mesclar arquivos PDF, Word, Excel, PowerPoint e...

    Mescle PDF, documentos do Word, planilhas e arquivos de apresentação programaticamente em seus aplicativos baseados em .NET usando a API Merger do GroupDocs em C#....txt) Portable Document Format File (.pdf) Portable Network...Slide Show (.pps) Rich Text Format File (.rtf) Tab Separated Values...

    blog.groupdocs.com/pt/merger/merge-pdf-word-exc...
  7. GroupDocs.Watermark Product Family on GroupDocs...

    GroupDocs.Watermark Product Family on GroupDocs Blog | Document Automation Solutions for .NET & Java Developers Recent content in GroupDocs.Watermark Product Family on GroupDocs Blog | Document Aut......terapkan watermark teks ke format PPT, PPTX, PPS & lainnya...menerapkan tanda air gambar ke format PPT, PPTX, PPS & lainnya...

    blog.groupdocs.com/id/categories/groupdocs.wate...
  8. GroupDocs.Metadata Product Family

    Document Automation APIs to enrich .NET and Java applications to view, edit, annotate, convert, compare, e-sign, parse, split, merge, redact, or classify documents of almost all the popular file Formats....EXIF (Exchangeable Image File Format)는 표준이며 가장 일반적인 이미지 및 오디오 형식으로...(Resource Interchange File Format)는 태그가 지정된 청크로 데이터를 저장하기 위한...

    blog.groupdocs.com/ko/categories/groupdocs.meta...
  9. Объединение файлов PDF, Word, Excel, PowerPoint...

    Программно объединяйте документы PDF, Word, электронные таблицы, файлы презентаций в приложениях на основе .NET с помощью API слияния от GroupDocs на C#....txt) Portable Document Format File (.pdf) Portable Network...Slide Show (.pps) Rich Text Format File (.rtf) Tab Separated Values...

    blog.groupdocs.com/ru/merger/merge-pdf-word-exc...
  10. 在 C# 中转换 Excel 和 CSV 数据 | XLSX 到 CSV - CSV 到 XLS

    在 Java 应用程序中将 XLS 和 XLSX 转换为 CSV 和 CSV 到 Excel 格式。使用 Java API 自动进行文件转换以进行文档转换。...PageNumber = 2, PagesCount = 1, Format = SpreadsheetFileType.Csv //...// Specify the conversion format }; converter.Convert(outputFile...

    blog.groupdocs.com/zh/conversion/convert-excel-...