Logo
Home 製品 サポート コンタクト 私たちについて
arrow1 File Converters
arrow1 TIFF and PDF apps
arrow1 Forensic
arrow1 Freeware

サーバー用 Excel コンバーター

ウェブサーバーを介してXLS、XLSX、ODS、XMLスプレッドシートをバッチ変換します。

ActiveX付きサーバーExcelコンバーター

Windows
2000/2003/Vista
7/8/10/11
and
2012/2016/2019/2022 Server
and
Docker/Citrix/Wine

Total Excel Converter Xは、Total Excel Converterの受賞歴のある機能をベースに、Webベースのサーバー指向のアクティビティをサポートすることで機能を拡張しています。Excelを簡単かつ正確にWord(DocおよびDocX)、PDF、HTML、Access、TXT、ODT、ODS、XML、SQL、CSV、Lotus、DBF、TEX、DIFF、SYLK、LaTeXファイルに変換します。Total Excel Converter XにはActiveXとコマンドラインアクセスのサポートも含まれています。

高度なWebベースの設計により、Total Excel ConverterXにはGUIがなく、中断するメッセージもありません。 XLSファイルを静かに自動的に変換することができます。 単一のExcelシートを変換するか、大量のファイルを処理するかはあなた次第です。 どちらにしても、多くの時間を節約する準備を整えましょう!

  • XLS、XLSX、OpenOffice形式(.odt、.ods)、.xml、.sql、wk2、wks、 .dbf、.tex、.difをソースファイルとして処理可能。
  • ActiveXのサポートを含み、Webインターフェースへの統合が可能で、既存のWebアプリケーションの一部としてコンバーターを組み込むことができます!
  • Total Folder Monitorを追加することで、任意のフォルダーでのアクティビティを追跡し、新しいXLSファイルが届いた際にTotal Excel Converter X機能を自動実行できます。 詳細はこちらをご覧ください。

Total Excel Converter Xは、面倒なGUIを持たない強力なコンソールツールです。 バックエンドの変換を自動的に実行することを目的としたこの強力なユーティリティは、10年以上のテストとユーザーのフィードバックに裏打ちされています。 無料の試用版をダウンロードして、ぜひお試しください。

サーバーベースのソリューションをお探しですか? CoolUtilsのサーバープロダクトで、堅牢なパフォーマンスに合わせてカスタマイズされた一連のサーバープロダクトを見つけてください。

今すぐダウンロード!

(30日間の無料試用を含む)

ライセンスを購入

(のみ $550.00)



Total Excel ConverterXの例

TotalExcelConverterXと.NETでエクセルファイルを変換する


string src="C:\\test\\Source.xlsx";
string dest="C:\\test\\Dest.PDF";

ExcelConverterX Cnv = new ExcelConverterX();
Cnv.Convert(src, dest, "-c PDF -log c:\\test\\Excel.log");

MessageBox.Show("Convert complete!");

Total Excel ConverterXでウェブサーバ上のExcelファイルを変換する

public static class Function1
    {
        [FunctionName("Function1")]
        public static async Task Run(
            [HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
            ILogger log)
        {
            StringBuilder sbLogs = new StringBuilder();
            sbLogs.AppendLine("started...");
            try
            {
                ProcessStartInfo startInfo = new ProcessStartInfo();
                startInfo.CreateNoWindow = true;
                startInfo.UseShellExecute = false;
                var assemblyDirectoryPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
                assemblyDirectoryPath = assemblyDirectoryPath.Substring(0, assemblyDirectoryPath.Length - 4);

                var executablePath = $@"{assemblyDirectoryPath}\Converter\ExcelConverterX.exe";
                sbLogs.AppendLine(executablePath + "...");
                var msgPath = $@"{assemblyDirectoryPath}\MSG\MSG-1.xlsx";
                var outPath = Path.GetTempFileName() + ".pdf";
                startInfo.FileName = executablePath;

                if (File.Exists(outPath))
                {
                    File.Delete(outPath);
                }

                if (File.Exists(executablePath) && File.Exists(msgPath))
                {
                    sbLogs.AppendLine("files exists...");
                }
                else
                    sbLogs.AppendLine("EXE & MSG files NOT exists...");
                startInfo.WindowStyle = ProcessWindowStyle.Hidden;
                startInfo.Arguments = $"{msgPath} {outPath}";
                using (Process exeProcess = Process.Start(startInfo))
                {
                    sbLogs.AppendLine($"wait...{DateTime.Now.ToString()}");
                    exeProcess.WaitForExit();
                    sbLogs.AppendLine($"complete...{DateTime.Now.ToString()}");
                }

                int sleepCounter = 10;

                while(!File.Exists(outPath) && sleepCounter > 0)
                {
                    System.Threading.Thread.Sleep(1000);
                    sbLogs.AppendLine("sleep...");
                    sleepCounter--;
                }
                if (File.Exists(outPath))
                    sbLogs.AppendLine("Conversion complete successfully.");
            }
            catch (Exception ex)
            {
                sbLogs.AppendLine(ex.ToString());
            }

            return new OkObjectResult(sbLogs);
        }
    }
一部の追加情報はAzureをご覧ください。

Total Excel ConverterXでウェブサーバ上のExcelファイルを変換する

dim C
Set C=CreateObject("ExcelConverter.ExcelConverterX")
C.Convert "c:\test\source.xlsx", "c:\test\dest.pdf", "-cPDF -log c:\test\Excel.log"
Response.Write C.ErrorMessage
set C = nothing
例2 ASP: 結果PDFを直接ストリームする
dim C
Set C=CreateObject("ExcelConverter.ExcelConverterX")
Response.Clear
Response.AddHeader "Content-Type", "binary/octet-stream"
Rresponse.AddHeader "Content-Disposition", "attachment; filename=test.pdf"
Response.BinaryWrite c.ConvertToStream("C:\www\ASP\Source.xlsx", "C:\www\ASP", "-cpdf  -log c:\html.log")
set C = nothing

Total Excel ConverterXを使用してPHPでExcelスプレッドシートを変換する

$src="C:\\test\\test.XLS";
$dest="C:\\test\\test.CSV";
if (file_exists($dest)) unlink($dest);
$c= new COM("ExcelConverter.ExcelConverterX");
$c->convert($src,$dest, "-c csv  -log c:\\test\\xls.log");
if (file_exists($dest)) echo "OK"; else echo "fail:".$c->ErrorMessage;

Total Excel ConverterXを使用してRubyでExcelスプレッドシートを変換する

require 'win32ole'
c = WIN32OLE.new('ExcelConverter.ExcelConverterX')

src="C:\\test\\test.xlsx";
dest="C:\\test\\test.pdf";

c.convert(src,dest, "-c PDF -log c:\\test\\Excel.log");

if not File.exist?(dest)
  puts c.ErrorMessage
end

Total Excel ConverterXを使用してPythonでExcelスプレッドシートを変換する

import win32com.client
import os.path

c = win32com.client.Dispatch("ExcelConverter.ExcelConverterX")

src="C:\\test\\test.xlsx";
dest="C:\\test\\test.pdf";

c.convert(src, dest, "-c PDF -log c:\\test\\Excel.log");

if not os.path.exists(file_path):
  print(c.ErrorMessage)

PascalとTotal Excel ConverterXを使用してExcelファイルを変換する

uses Dialogs, Vcl.OleAuto;

var
  c: OleVariant;
begin
  c:=CreateOleObject('ExcelConverter.ExcelConverterX');
  C.Convert('c:\test\source.xlsx', 'c:\test\dest.pdf', '-cPDF -log c:\test\Excel.log');
  IF c.ErrorMessage<> Then
    ShowMessage(c.ErrorMessage);
end;

Total Excel ConverterXでウェブサーバ上のExcelおよびODSファイルを変換する

var c = new ActiveXObject("ExcelConverter.ExcelConverterX");
c.Convert("C:\\test\\source.xlsx", "C:\\test\\dest.pdf", "-c PDF");
if (c.ErrorMessage!="")
  alert(c.ErrorMessage)

Total Excel ConverterXを使用してPerlでExcelスプレッドシートを変換する

use Win32::OLE;

my $src="C:\\test\\test.XLS";
my $dest="C:\\test\\test.CSV";

my $c = CreateObject Win32::OLE 'ExcelConverter.ExcelConverterX';
$c->convert($src,$dest, "-c csv  -log c:\\test\\xls.log");
print $c->ErrorMessage if -e $dest;

quote

サーバー用 Excel コンバーター 顧客レビュー 2026

評価
顧客レビューに基づく評価:4.7/5
5 Star

I have tried many Excel to CSV converters, even all of free online services, but, they did not correctly converted my files. It is because, my Excel files contained Russian (Cyrillic alphabet) characters, and all other converters failed to represent Cyrillic characters correctly. Only Total Excel Converter did the job correctly, also Total Excel Converter has very simple easily understandable menu, it is very easy to navigate through menu.

5 Star Zhandos Alpyssov www.ceravit.com

"It is very promising and good product. We have tested Excel to text and xls to doc conversions so far, it worked all right. Thank you for the support."

4.5 Star Marcus Todsen


Total Excel ConverterXを使用しているのは?

Developers and IT teams that convert Excel files to PDF, DOC, CSV, and more on servers

Web Applications

Online Spreadsheet Conversion

Add Excel-to-PDF conversion to your web app via ActiveX

Web developers integrate Total Excel ConverterX into ASP, PHP, or .NET applications so users can upload Excel files and receive converted PDF, HTML, or CSV output instantly. The converter runs silently on the server with no GUI, supporting multiple simultaneous users without interruption.

Enterprise Automation

ERP & CRM Data Export

Auto-convert Excel exports from business systems

Enterprise IT teams schedule Total Excel ConverterX to process nightly XLS and XLSX exports from ERP, CRM, and BI platforms. Convert financial reports to protected PDF, extract data to CSV for databases, or transform spreadsheets to HTML for internal dashboards — all unattended via command line.

Hot Folder Automation

Folder Monitor Integration

Auto-convert new Excel files as they arrive in folders

Paired with Total Folder Monitor, Total Excel ConverterX watches designated folders and automatically converts new XLS files as they appear. Incoming spreadsheets from partner uploads, FTP drops, or automated exports are converted to the required format and routed to the right destination hands-free.

Multi-User Networks

Network Conversion Service

Serve Excel conversion to all users on your local network

Organizations deploy Total Excel ConverterX as a shared service on the company network. Employees from finance, sales, and operations submit Excel files for conversion to PDF, DOC, or CSV through a centralized server — no need to install desktop converters on every workstation.

Software Development

Excel SDK for Custom Apps

Embed spreadsheet conversion into your own software

Software vendors embed Total Excel ConverterX into their products to add Excel export capabilities. The ActiveX interface provides conversion functions through simple API calls — convert XLS, XLSX, ODS, and DBF files to PDF, HTML, CSV, SQL, LaTeX, and 15+ other formats from within any COM-compatible application.

今すぐダウンロード!

更新 Mon, 12 Jan 2026

ライセンスを購入

(のみ $550.00)




今すぐ作業を開始!

無料トライアルをダウンロードして、ファイルを数分で変換。
クレジットカードもメールアドレスも不要。

⬇ 無料トライアルをダウンロード Windows 7/8/10/11 • 95 MB
Pro Suite

完全登録版の主な機能


APIサポートが組み込まれているアプリのリスト