Introduction of Java Learner IDE with C#

No.of Views534
Bookmarked0 times
Downloads 
Votes0
By  ninethsense   On  28 Jun 2010 09:06:24
Tag : JAVA , Utilities
A single window Java Learner IDE with C#
emailbookmarkadd commentsprint

Images in this article missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at info@codegain.com

 

Introduction

I was making a processor for one of my C++ DOS applications. This inspired me to make this tool. This tool is not a professional one but shows an example which makes use of the System.Diagnostics namespace. With this tool, you can write small console based Java programs, compile and run. Just a way to practically learn Java. 

Image Loading

Prerequisites

Yes, to learn Java - you must install Java SDK first and then you need to add the path to your javac.exe and java.exe in your path environment variable if you do not have it already. This application will check whether it is ok. If there is something wrong, it will give you the message: "Java not installed or not found in the PATH variable". Also, at the same time Compile, Run and Compile & Run buttons will become disabled.

Workflow

When you invoke the application, Java check will happen in the Form1_Load event. The method I have used is CheckIfJavaInstalled(). There is no system level task executing to check whether Java is installed or not. It simply checks whether the path environment variable contains the word 'java'.

private bool CheckIfJavaInstalled()
{
    bool flag = true;if (Environment.GetEnvironmentVariable("path").ToLower().IndexOf("java") == -1)
    {
        flag = false;
    }return flag;
}

 In the main window (well, only one window is there ;)), I used One split container, two text boxes, one panel and three buttons. Both text boxes are multiline enabled. One is used for writing Java code while the other is for showing status messages and program output.

'Compile' button will first save the currently displayed code in a file named test.java (function: SaveFile()). It is because javac.exe needs a Java program file to compile. After saving, it invokes the function CompileJava(). This again invokes a function Execute(@"javac.exe", "test.java"). I wrote this as a separate method since I want to use the same for Runjava() method too.

Here is what the code looks like:

private bool Execute(string filename, string arguments)
{
    bool flag = true;
    Process p = new Process();
    p.StartInfo.FileName = filename;
    p.StartInfo.Arguments = arguments;
    p.StartInfo.RedirectStandardOutput = true;
    p.StartInfo.RedirectStandardError = true;
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.ErrorDialog = false;
    p.StartInfo.CreateNoWindow = true;
    p.Start();
    p.WaitForExit();
            
    string err = p.StandardError.ReadToEnd();
    string output =  p.StandardOutput.ReadToEnd();
    string str = err + output;if (output.Length == 0)
    {if (err.Length > 0)
        {
            str += "Status: Failed";
            flag = false;
        }else{
            str += "Status: Success";
        }
    }


    txtOutput.SelectionLength = txtOutput.Text.Length;
    txtOutput.SelectedText = str + "\r\n--------------------------------------\r\n";return flag;
}

 If you are a beginner, you may be wondering what SelectectionLength and SelectedText mean. These two lines are used to move the cursor of status textbox to scroll to the bottom.System.Diagnostics.Process is used to invoke the command line applications javac.exe and java.exe and redirect the output from console to status textbox of our application.

Problems?

Well, as I mentioned before - this is not a professional software but a hobby program. That too, I wrote it too quickly, may be in just 30 minutes or less. So there is no exception handling, design, documentation/help, etc.

Sample Project Source

Download demo files -6 kb

Download source files -15 kb

 
Sign Up to vote for this article
 
About Author
 
ninethsense
Occupation-
Company-
Member Type-Junior
Location-Not Provided
Joined date-21 Jul 2009
Home Page-http://blog.ninethsense.com/
Blog Page-http://blog.ninethsense.com/
 
 
Other popularSectionarticles
Comments
There is no comments for this articles.
Leave a Reply
Title:
Display Name:
Email:
(not display in page for the security purphase)
Website:
Message:
Please refresh your screen using Ctrl+F5
If you can't read this number refresh your screen
Please input the anti-spam code that you can read in the image.
^ Scroll to Top