Delphi to Java Converter • Ispirer Toolkit, Free Trial
1/2

SQLWays is Now Web-Based. Register for a Live Demo Tour

2/2

Black Friday is Coming: Save Up to 25%. Explore Plans

Convert Delphi to Java

Delivering you a high-quality result in due time

Get started. Request a quote

Many companies have used our tools and provided excellent feedback on their performance

  • Capterra logo

    4.8

  • Clutch logo

    4.9


6 undeniable facts to choose conversion with Ispirer

  • Fact 1/6

    Same functionality, new application

    Migration does not require labor-intensive development of new functionality from scratch. Your application will be converted to a new technology while maintaining the original functionality

    Same functionality, new application -- card image
  • Fact 2/6

    Architecture preserved or modified

    Automated conversion implies preserving the initial architecture which is easier to maintain. The app architecture, can also be transformed, for example, from desktop to the web to improve accessibility and scalability

    Architecture preserved or modified -- card image
  • Fact 3/6

    The speed of conversion

    Migrating an application is much faster than creating a new one from scratch. Automated migration with Ispirer Toolkit minimizes manual effort and may speed up the delivery by 2-3 times

    The speed of conversion -- card image
  • Fact 4/6

    Legacy System Transformation

    Migrating Delphi to modern architectures or platforms can upgrade your application, making it easier to maintain, update, and extend in the long term run

    Legacy System Transformation -- card image
  • Fact 5/6

    Performance and Scalability

    Through conversion, you can optimize the application's architecture and infrastructure, improving scalability and performance without the need to rebuild everything

    Performance and Scalability -- card image
  • Fact 6/6

    No need for documentation

    To perform the conversion, we go by your source code. There is no need to have detailed documentation in place to start the conversion as is the case with development

    No need for documentation -- card image

Conversion opportunities with Ispirer

Ispirer Ecosystem automates your migration routine to enable quick and smart transformation of any application. Double the migration speed with our comprehensive solutions.

  • With CodeWays only

    • Free Metrics tool to analyze the migration complexity
    • Assistance in CodeWays configuration
    • Automated migration of the entire application including project files, business logic, GUI and database API
    • Prompt customization of the tool to maximize automation rate
    • Expert support
    With codeways -- card image
  • With CodeWays as a part of migration service

    • Tailored migration roadmap from assessment through migration and testing to cutover
    • Automated migration of the entire application, including project files, business logic, GUI and database API
    • Team of experts skilled in application conversion
    • Assistance in deployment, integration, performance optimization, and new feature development
    With Ispirer Codeways -- card image

Unleash the reinforced application
Save your time

Book a demo

Do it for 5 minutes

CodeWays for automated app conversion

CodeWays is a tool for automated application conversion that translates code from one programming language to another automatically, while preserving the initial functionality of an app. Using an intelligent proprietary algorithm, the tool analyzes the syntax, semantics, mapping data types, control structures, function calls, and code structures that do not have equivalents in a target technology.

Based on the analysis, CodeWays applies all the relevant conversion rules from its knowledge base core and translates Delphi source code to Java.

It takes 5 min to start your application conversion journey!

App source code & App source code with embedded SQL*

  • Informix4GL
  • Delphi
  • Cobol
  • VisualBasic
  • Progress4GL
  • PowerBuilder
  • C/C++

Any files with SQL code

  • Informix
  • Teradata
  • SQLServer
  • Oracle
  • IBM DB2
  • SAP Sybase
  • PostgreeSQL
  • MySQL
  • Greenplum
  • MariaDB
  • Firebird
How Codeways work
  • App target code

    App target code
  • App target code with converted ESQL

    App target code with converted ESQL
  • Files with SQL code for the target DB

    Files with SQL code for the target DB

*Embedded SQL are SQL statements written inline with the program source code, of the host language.

Convert Smarter. Evolve Faster

Over 400+ ways to migrate

Give it a try now. Book a demo

Dive into the tool’s features

  • Delphi
  • Cobol
  • OracleForms
  • Progress 4GL
  • PowerBuilder
  • C\C++
  • IBM
  • RPG
  • Informix 4GL
  • Delphi
  • Cobol
  • OracleForms
  • Progress 4GL
  • PowerBuilder
  • C\C++
  • IBM
  • RPG
  • Informix 4GL
  • MSSQL
  • Oracle
  • OracleForms
  • Progress 4GL
  • C\C++
  • Delphi
  • Cobol
  • Informix 4GL
  • MSSQL
  • Oracle
  • OracleForms
  • Progress 4GL
  • C\C++
  • Delphi
  • Cobol
  • Informix 4GL

Migration demo

Check out how Ispirer Toolkit automatically converts {Delphi} application

Delphi to Java conversion service overview

Assessment

  • Collecting info about an application
  • Analyzing the application and its components
  • Making migration plan
Start

More than 2K users use this way to
successfully convert their application code

Automated APP conversion

  • Entire APP conversion
  • APP changes (API, ESQL)
  • Tool configuration and customization for specific APP

Manual APP conversion

  • Manual code review and debugging
  • Replacing custom controls, libraries, methods, etc. with analogues
  • Developing remaining solutions using target technology

Functional testing

  • APP analysis and test documentation creation
  • Testing the application against test documentation
  • Fixing issues

Acceptance testing

  • Testing the APP against business requirements
  • Fixing issues

Cutover

  • Switching APP
  • System startup assisstance
  • Collecting info about an APP
  • Analyzing the APP and its components
  • Making migration plan
  • Entire APP conversion
  • APP changes (API, ESQL)
  • Manual code review and debugging
  • Replacing custom controls, libraries, methods, etc. with analogues
  • Developing remaining solutions using target technology
  • APP analysis and test documentation creation
  • Testing the application against test documentation
  • Fixing issues
  • Testing the APP against business requirements
  • Fixing issues
  • Switching APP
  • System startup assisstance

Conversion Samples of Delphi to Java Swing

Ispirer Toolkit analyzes all object dependencies during the conversion process and provides not only line-by-line conversion, but resolves type conversions as well. The software understands and transforms the necessary inheritance dependencies. It parses the entire source code, builds an internal tree with all the information about the objects, and uses it in the migration process.

The code samples below provide you with more details.

  • Variables declaration conversion:

    Delphi

    1.  
    2. var CanClose: Boolean;
    3. CustNo: Double;
    4. DBPath: string;
    5. Key: Char;
    6. I: Integer;
    7. RSCON: TIniFile;
    8.  

    → Java Swing

    1.  
    2. boolean CanClose;
    3. Double CustNo;
    4. String DBPath;
    5. char Key;
    6. Integer I;
    7. Wini RSCON;
    8.  
  • .pas file structure conversion:

    Delphi

    1.  
    2. unit Splash;
    3.  
    4. interface
    5.  
    6. uses
    7. SysUtils, Windows, Messages, Classes, Graphics, Controls,
    8. Forms, Dialogs, StdCtrls, ExtCtrls;
    9.  
    10. type
    11. TSplashForm = class(TForm)
    12. Panel1: TPanel;
    13. Label3: TLabel;
    14. Bevel1: TBevel;
    15. Label1: TLabel;
    16. Image1: TImage;
    17. end;
    18.  
    19. var
    20. SplashForm: TSplashForm;
    21.  
    22. implementation
    23.  
    24. {$R *.dfm}
    25.  
    26. end.
    27.  

    → Java Swing

    1.  
    2. package units;
    3. import handlers.TSplashFormHandler;
    4. import org.slf4j.Logger;
    5. import org.slf4j.LoggerFactory;
    6.  
    7. public class Splash {
    8. private static Splash instance;
    9. private static final Logger LOGGER = LoggerFactory.getLogger(Splash.class);
    10. public TSplashFormHandler SplashForm;
    11.  
    12. private Splash() {
    13. }
    14.  
    15. public static synchronized Splash getInstance() {
    16. if(instance == null) {
    17. instance = new Splash();
    18. }
    19. return instance;
    20. }
    21. }
    22.  
    23.  
    24.  
    25. package handlers;
    26. import forms.TSplashForm;
    27. import units.Splash;
    28.  
    29. public class TSplashFormHandler {
    30. public TSplashForm form;
    31.  
    32. public TSplashFormHandler(TSplashForm form) {
    33. this.form = form;
    34. form.setTSplashFormHandler(this);
    35. }
    36. }
    37.  
  • .dfm file structure conversion:

    Delphi

    1.  
    2. object SplashForm: TSplashForm
    3. Left = 204
    4. Top = 123
    5. AutoScroll = False
    6. ActiveControl = Panel1
    7. BorderIcons = []
    8. BorderStyle = bsNone
    9. ClientHeight = 178
    10. ClientWidth = 168
    11. Font.Color = clBlack
    12. Font.Height = -11
    13. Font.Name = 'MS Sans Serif'
    14. Font.Style = []
    15. PixelsPerInch = 96
    16. Position = poScreenCenter
    17. TextHeight = 13
    18. object Panel1: TPanel
    19. Left = 0
    20. Top = 0
    21. Width = 168
    22. Height = 178
    23. Align = alClient
    24. BevelInner = bvLowered
    25. Color = clSilver
    26. TabOrder = 0
    27. object Label3: TLabel
    28. Left = 23
    29. Top = 125
    30. Width = 123
    31. Height = 19
    32. Caption = 'Marine Adventures'
    33. Font.Color = clBlack
    34. Font.Height = -16
    35. Font.Name = 'Times New Roman'
    36. Font.Style = [fsItalic, fsUnderline]
    37. ParentFont = False
    38. end
    39. object Bevel1: TBevel
    40. Left = 10
    41. Top = 150
    42. Width = 147
    43. Height = 2
    44. Style = bsRaised
    45. end
    46. object Label1: TLabel
    47. Left = 60
    48. Top = 158
    49. Width = 47
    50. Height = 13
    51. Caption = 'Loading...'
    52. end
    53. object Image1: TImage
    54. Left = 40
    55. Top = 11
    56. Width = 87
    57. Height = 113
    58. Picture.Data = {
    59. }
    60. end
    61. end
    62. end
    63.  

    → Java Swing

    1.  
    2. package forms;
    3. import javax.swing.*;
    4. import javax.swing.border.TitledBorder;
    5. import javax.swing.plaf.FontUIResource;
    6. import java.awt.*;
    7. import com.ispirer.sw.controls.TForm;
    8. import com.ispirer.sw.controls.TImage;
    9. import com.ispirer.sw.types.image.PictureUtils;
    10. import handlers.TSplashFormHandler;
    11. import org.apache.commons.lang3.StringUtils;
    12.  
    13. public class TSplashForm extends TForm {
    14. private static final long serialVersionUID = 1L;
    15. private TSplashFormHandler tSplashFormHandler;
    16.  
    17. private JPanel Panel1 = null;
    18. private JLabel Label3 = null;
    19. private JLabel Label1 = null;
    20. private TImage Image1 = null;
    21. public JPanel getPanel1() {
    22. return this.Panel1;
    23. }
    24. public JLabel getLabel3() {
    25. return this.Label3;
    26. }
    27. public JLabel getLabel1() {
    28. return this.Label1;
    29. }
    30. public TImage getImage1() {
    31. return this.Image1;
    32. }
    33. public TSplashForm() {
    34. setUIFont(new FontUIResource("MS Sans Serif", Font.PLAIN, 11));
    35. setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    36. setName("SplashForm");
    37. setBorderStyle(BorderStyle.BS_NONE);
    38. setBounds(204, 123, 168, 178);
    39. setLocationRelativeTo(null);
    40. initTSplashForm();
    41. initLayouts();
    42. }
    43. private void initTSplashForm() {
    44. this.Panel1 = new JPanel() {
    45. @Override
    46. protected void paintComponent(Graphics g) {
    47. super.paintComponent(g);
    48. g.drawLine(10, 150, 157, 150);
    49. }
    50. };
    51. this.Label3 = new JLabel();
    52. this.Label1 = new JLabel();
    53. this.Image1 = new TImage();
    54. //
    55. // Panel1
    56. //
    57. this.Panel1.setName("Panel1");
    58. this.Panel1.setBounds(0, 0, 168, 178);
    59. this.Panel1.setLayout(null);
    60. this.Panel1.setBackground(Color.lightGray);
    61. getContentPane().add(this.Panel1, 0);
    62. //
    63. // Label3
    64. //
    65. this.Label3.setName("Label3");
    66. this.Label3.setForeground(Color.black);
    67. this.Label3.setBounds(23, 125, 123, 19);
    68. this.Label3.setText("<html><u>Marine Adventures</u></html>");
    69. this.Label3.setFont(new Font("Times New Roman", Font.ITALIC, 15));
    70. this.Label3.addPropertyChangeListener("text", labelChangeText);
    71. this.Panel1.add(this.Label3);
    72. //
    73. // Label1
    74. //
    75. this.Label1.setName("Label1");
    76. this.Label1.setBounds(60, 158, 47, 13);
    77. this.Label1.setText("Loading...");
    78. this.Label1.addPropertyChangeListener("text", labelChangeText);
    79. this.Panel1.add(this.Label1);
    80. //
    81. // Image1
    82. //
    83. this.Image1.setName("Image1");
    84. String Image1Data = StringUtils.join("");
    85. this.Image1.setImage(PictureUtils.getTImage(Image1Data));
    86. this.Image1.setBounds(40, 11, 87, 113);
    87. this.Panel1.add(this.Image1);
    88. }
    89. private void initLayouts() {
    90. GroupLayout contentPaneLayout = new GroupLayout(getContentPane());
    91. getContentPane().setLayout(contentPaneLayout);
    92. contentPaneLayout.setHorizontalGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.LEADING)
    93. .addComponent(Panel1, 0, 168, Short.MAX_VALUE));
    94. contentPaneLayout.setVerticalGroup(contentPaneLayout.createParallelGroup(GroupLayout.Alignment.LEADING)
    95. .addComponent(Panel1, 178, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE));
    96. }
    97.  
    98. public void setTSplashFormHandler(TSplashFormHandler tSplashFormHandler) {
    99. this.tSplashFormHandler = tSplashFormHandler;
    100. setActiveControl(this.Panel1);
    101. }
    102. }
    103.  
  • If statement conversion:

    Delphi

    1.  
    2. if FromEdit.Text = '' then Result := 0
    3. else Result := StrToDate(FromEdit.Text);
    4.  

    → Java Swing

    1.  
    2. if(form.getFromEdit().getText() == null && "".equals(form.getFromEdit().getText().trim())) {
    3. result = null;
    4. } else {
    5. result = LocalDateTime.from(LocalDate.parse(form.getFromEdit().getText(), DateTimeFormatter.ofPattern("M/d/yyyy")).atStartOfDay());
    6. }
    7.  
  • For statement conversion:

    Delphi

    1.  
    2. for I := 0 to Application.ComponentCount - 1 do
    3. begin
    4. if Application.Components[I] is TForm then
    5. begin
    6. F := TForm(Application.Components[I]);
    7. if (F <> Self) and (F.Visible) then F.Close;
    8. end;
    9. end;
    10.  

    → Java Swing

    1.  
    2. for(I = 0; I <= Window.getWindows().length - 1; I ++) {
    3. if(Window.getWindows()[I] instanceof TForm) {
    4. F = (TForm) Window.getWindows()[I];
    5. if((F != this.form) && F.isVisible()) {
    6. F.dispose();
    7. }
    8. }
    9. }
    10.  
  • While statement conversion:

    Delphi

    1.  
    2. while not Items.EOF do
    3. Items.Delete;
    4.  

    → Java Swing

    1.  
    2. while(!form.getItems().isEOF()) {
    3. form.getItems().delete();
    4. }
    5.  
  • Try catch statement conversion:

    Delphi

    1.  
    2. try
    3. Items.First;
    4. finally
    5. DeletingItems := False;
    6. end;
    7.  

    → Java Swing

    1.  
    2. try
    3. {
    4. Items.MoveFirst();
    5. }
    6. finally
    7. {
    8. DeletingItems = false;
    9. }
    10.  

Get a free sample code of our Delphi to Java Swing code conversion

Ispirer Toolkit automatically converts not only a single piece of code, but an entire application. Complex code will require customization of the toolkit

  • Explore how Ispirer Toolkit migrates the source code to the target technology without downloading it.
  • Analyze and compare the source sample with your code to understand which components of your application can be automatically converted using Ispirer Toolkit.
  • Test an application containing nearly 1,000 lines of code.
  • Our experts can add new conversion rules within 3-5 business days.
Enter your name.

Enter a valid e-mail address.

Select your country.

Invalid input.


They succeeded using Ispirer Toolkit

Transportation Firm Expands Software with Ispirer Solution

Delphi -> C# WPF

Target: C#

Transportation and defense corporation case card

Project Scope

600 000 LOC

Project Duration

11 Months

Industry

Transportation and defense corporation

Customization allowed to speed up migration 3 times

Delphi -> C# WPF

Target: C#

Transportation and defense corporation case card

Project Scope

2 000 000 LOC

Project Duration

4 Months

Industry

Financial Services Company

Trust us with your conversion project

  • Seasoned team

    Ensuring high security and performance standards is what we do best, thanks to our impressive expertise in building reliable and scalable solutions.

  • Technology expertise with 25+ years of experience

    Our team has gained a wide pool of expertise in various programming languages, from the rarest to the most popular ones.

  • We comply with ISO 27001 security

    We comply with ISO 27001 security management requirements with comprehensive policies and processes, advanced security technology, and skilled professionals.

  • Proprietary tools

    We employ Ispirer proprietary tools, underscoring our dedication to delivering the utmost reliability and performance solutions.

    The toolkit is compiled daily and continually integrates dozens of new conversion rules, enhancing the automation capabilities.

They chose Ispirer to revamp their application

Epicor, University of Maryland, Splice Machine and more have adopted CodeWays to boost their innovation life-cycle accelerate and manage their end-to-end innovation lifecycle

Epicor logo
University of Maryland logo
High Availability Systems Co. Ltd., Japan
Splice Machine, United States logo
NedGraphics, The Netherlands logo
Kellenberger, Switzerland logo

Progress ABL to C#

Migration project

50%

Migration time reduction

2 MLN

Lines of code

75%

Аutomation achieved

Enterprise software

"We have found the Ispirer team to be knowledgeable and responsive, and we have found the tooling to be flexible enough to be easily adapted to our coding conventions."

COBOL to Java

Migration project

6-month

Migration time reduction

100K+

Lines of code

200+

COBOL programs

Education

"Ispirer Toolkit enabled us to efficiently convert 200 COBOL programs with over 100,000 lines of code to Java. The tool produced high-quality, maintainable code, allowing our team to focus on infrastructure rather than conversion. Ispirer’s support was exceptional, often resolving issues within one business day."

Informix 4GL to Oracle PL/SQL

Migration project

95%

Аutomation achieved

200K+

Lines of code

75%

Migration time reduction

IT Services

"Ispirer provided a full-cycle migration service, converting over 200,000 lines of Informix 4GL to Oracle PL/SQL with 95% automation. Their expertise, customizations, and commitment to quality ensured a seamless transition. We highly recommend Ispirer for complex migration projects."

Oracle PL/SQL to Java

Migration project

80%

Аutomation achieved

400K+

Lines of code

50%

Migration time reduction

Database technology

"At the onset of the engagement, the Ispirer MnMTK was expanded to meet the specific requirements of our migration prior to being delivered for our use. Once this phase of the project was complete, we were provided with the expanded toolkit."

C/C++, AutoLISP to C#.NET

Migration project

70%

Аutomation achieved

250K+

Lines of code

50%

Migration cost reduction

Civil engineering and infrastructure

"We were impressed with the knowledge, professionalism, hard work, and enthusiasm of the Ispirer team. Through this Migration Project, we have a solid base for further expanding our application."

Delphi to .NET migration

Migration project

75%

Аutomation achieved

20K

Lines of code

50%

Migration time reduction

Automation Equipment

"We had an old Borland Delphi 7.0 project, which was brought back to life. Ispirer had offered us a timely and financially attractive conversion of the application. The work was performed promptly."


Are you still here? And wow, that's quite a lot you had to scroll through! 😄

Consult with our expert to better organize for you migration flow

Take control of your application
conversion now

Book a demo

Do it for 5 minutes

Cookie icon
THIS SITE USES COOKIES: By continuing to browse this site, you give your consent for cookies to be used. For more details, please read our Privacy Policy and Cookies Policy.
I Got it