Logo
Strona główna Produkty Wsparcie Kontakt O nas
arrow1 File Converters
arrow1 TIFF and PDF apps
arrow1 Forensic
arrow1 Freeware

Konwerter plików Excel dla serwerów

Konwertuj arkusze XLS, XLSX, ODS, XML w partiach przez serwery webowe.

Serwerowy konwerter Excel z ActiveX

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

Total Excel Converter X opiera się na nagradzanej funkcjonalności Total Excel Converter, dodając obsługę działań opartych na serwerze przez Internet. Łatwo i dokładnie konwertuje pliki Excel na Word (zarówno Doc, jak i DocX), PDF, HTML, Access, TXT, ODT, ODS, XML, SQL, CSV, Lotus, DBF, TEX, DIFF, SYLK i LaTeX. Total Excel Converter X obejmuje również obsługę ActiveX i dostęp przez linię poleceń.

Ze względu na swój zaawansowany, oparty na interfejsie internetowym projekt, Total Excel ConverterX nie posiada GUI ani przeszkadzających komunikatów. Może konwertować pliki XLS cicho i automatycznie. Konwertuj pojedyncze arkusze Excel lub pracuj z dużymi paczkami plików; wybór należy do Ciebie. Tak czy inaczej, przygotuj się na oszczędność czasu!

  • Zdolność do pracy z formatami XLS, XLSX i OpenOffice (.odt, .ods), .xml, .sql, wk2, wks, .dbf, .tex, .dif jako plikami źródłowymi.
  • Obejmuje wsparcie dla ActiveX, co pozwala na integrację z interfejsami internetowymi; spraw, aby konwerter stał się częścią każdej istniejącej aplikacji internetowej!
  • Dodanie Total Folder Monitor pozwala śledzić aktywność w dowolnym folderze i automatycznie uruchamiać funkcje Total Excel Converter X, gdy pojawią się nowe pliki XLS. Dowiedz się więcej tutaj.

Total Excel Converter X to potężne narzędzie konsolowe bez uciążliwego GUI. Zaprojektowane, aby pomóc w automatycznym wykonywaniu przetwarzania na zapleczu, to potężne narzędzie jest wspierane przez dekadę testów i opinii użytkowników. Wypróbuj je dzisiaj, pobierając naszą bezpłatną wersję próbną.

Szukasz rozwiązań serwerowych? Odkryj gamę produktów serwerowych dostosowanych do solidnej wydajności na CoolUtils Server Products.

Pobierz teraz!

(zawiera 30-dniowy DARMOWY okres próbny)

Kup licencję

(tylko $550.00)



Przykłady Total Excel ConverterX

Konwersja plików excel za pomocą TotalExcelConverterX i .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!");

Konwersja plików Excel na serwerach internetowych z Total Excel ConverterX

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);
        }
    }
Kilka dodatkowych informacji o Azure.

Konwersja plików Excel na serwerach internetowych z Total Excel ConverterX

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
Przykład2 ASP: bezpośredni strumień wynikowego 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

Konwersja arkuszy Excel za pomocą PHP z Total Excel ConverterX

$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;

Konwersja arkuszy Excel za pomocą Ruby z Total Excel ConverterX

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

Konwersja arkuszy Excel za pomocą Python z Total Excel ConverterX

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)

Konwersja plików Excel za pomocą Pascal i Total Excel ConverterX

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;

Konwersja plików Excel i ODS na serwerach internetowych z Total Excel ConverterX

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

Konwersja arkuszy Excel za pomocą Perl z Total Excel ConverterX

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

Konwerter plików Excel dla serwerów Opinie klientów 2026

Oceń
Ocenione na 4.7/5 na podstawie opinii klientów
5 Star

Wypróbowałem wiele konwerterów Excel do CSV, nawet wszystkie darmowe usługi online, ale nie konwertowały one poprawnie moich plików. To dlatego, że moje pliki Excel zawierały rosyjskie (cyrylica) znaki, a wszystkie inne konwertery nie potrafiły poprawnie przedstawić znaków cyrylicy. Tylko Total Excel Converter wykonał zadanie poprawnie, ponadto Total Excel Converter ma bardzo prosty i łatwy do zrozumienia interfejs, nawigacja po menu jest bardzo prosta.

5 Star Zhandos Alpyssov www.ceravit.com

"To bardzo obiecujący i dobry produkt. Testowaliśmy do tej pory konwersje z Excel do tekstu oraz z xls do doc, wszystko działało poprawnie. Dziękujemy za wsparcie."

4.5 Star Marcus Todsen


Kto używa 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.

Pobierz teraz!

Zaktualizowano Mon, 26 Jan 2026

Kup licencję

(tylko $550.00)




Zacznij pracować teraz!

Pobierz wersję próbną i konwertuj pliki w kilka minut.
Nie jest wymagana karta kredytowa ani e-mail.

⬇ Pobierz wersję próbną Windows 7/8/10/11 • 95 MB
Pro Suite

Kluczowe funkcje pełnej zarejestrowanej wersji

  • Formaty źródłowe: XLS, XLSX, CSV, TSV, XLSM, XLSB, XLT, XLTM, XLTX, XLK, XLW, OTS, PXL, QPW, WB2, WB1, WQ2, WQ1, SDC, VOR, DBF, SLK, UOS, UOF, WK1, WK2, WK3, WK4, WKS, WAB, DIF, ET, Clarion, DBISAM, Advantage.
  • Formaty wyjściowe: DOC, PDF, HTML, MHT, XHTML, CSV, TXT, TIFF, JPEG, SVG, RTF, XML, XLS, XLSX, ODS, ODT, Lotus, DIFF, SYLK, LATEX, SQL, DBF, Access.
  • Eksport ukrytych arkuszy
  • Konwertuje XLS z wykresami
  • Możliwość podpisywania plików PDF
  • Obsługa plików Excel 2019
  • Oferuje opcję Dopasowania do strony
  • Konwertuj Excel do Access w wierszu poleceń
  • Konwertuj Excel do XML w wierszu poleceń
  • Konwertuj Excel do CSV w wierszu poleceń

Lista aplikacji z wbudowaną obsługą API

Copyright 2003-2026 CoolUtils Development. Wszelkie prawa zastrzeżone.