Calling Java program from C#

來源:互聯網
上載者:User
Calling Jaba program from C#

Author Date of Submission User Level
Maheswara Rao 07/18/2001 Intermediate

  
Source Code SunMSMSRao.zip 7 KB

Hi sharpers
This is Mahesh again after some break. In this article I am going to show how to call java program using C#.  

According Microsoft definition of C#: -
揅# is a simple, Modern. Object Oriented language and combine the high productivity of VB and the raw power of C++?/font>

According Mahesh definition of C#: -
揅# is Simple, Modern, Object Oriented beautiful language and daughter (SHE-SHARP) of Java and Microsoft ?/font>

What I want to say SUN (sun) and MS (moon) both are very Important to IT WORLD (world) but both are now enemies now a days they are making languages to dominate each other.  This is sure without sun and moon there is no world like that with out SUN and MS there is no IT WORLD. I pry to god to make both are good friends they should work for IT PEOPLE.   

This application has 4 files

shesharp.cs
javasharp.java
comp.bat  //for compel
j.bat  
In this application I used Inner class for developing panel.

using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Diagnostics;
using System;

厖?

厖?.

//for mixed background
public void format(object s,PaintEventArgs a)
    {
      Graphics g=CreateGraphics();
      Rectangle rect=new Rectangle(0,0,300,300);
      Color nyc=Color.FromArgb(200,50,5,200);
      LinearGradientBrush b=new       LinearGradientBrush(rect,Color.DarkOrange,nyc,LinearGradientMode.Vertical);
      g.FillRectangle(b,rect);
    }

//for calling java program
private void calljava(object ob,EventArgs arg)
    {
        Process.Start("j.bat");
    }

//using Inner class for panel
public class pp:Panel
    {
     int x;
     int y;
     Timer t=new Timer();
     String s="Hi...\nyou Know?\nWe are good Friends\nI can call Java ...";
     String mail="mail me..\nmallm_uma@rediffmail.com\nmahe_proj@rediffmail.com";
     private Label l=null;
     private Label maill=null;
     Color nyc;
//Constructor
     public pp()
       {
       x=10;
       y=200;
     this.Location=new Point(0,10);
     nyc=Color.FromArgb(200,10,5,225);
     this.Size=new Size(300,230);
     maill=new Label();
     l=new Label();
     l.Text=s;
     l.Size=new Size(250,100);
     l.ForeColor=nyc;
     l.BackColor=Color.Transparent;
     l.Font=new Font("verdana",15,FontStyle.Bold);
     l.TextAlign=ContentAlignment.MiddleCenter;
     maill.Text=mail;
     maill.Size=new Size(160,40);
     maill.Location=new Point(10,192);
     maill.Font=new Font("verdana",7,FontStyle.Bold);
     maill.ForeColor=Color.Yellow;
     maill.BackColor=Color.Transparent;
     this.Controls.Add(l);
     this.Controls.Add(maill);
     t.Interval=50;
     t.Tick+=new EventHandler(draw);
     t.Enabled=true;
      }

   protected override void OnPaint(PaintEventArgs a)
     {
      Graphics g=a.Graphics;
      Rectangle rect=new Rectangle(0,0,300,230);
      LinearGradientBrush b=new LinearGradientBrush(rect,Color.DarkOrange,nyc,LinearGradientMode.Vertical);
      g.FillRectangle(b,rect);
      Font ff=new Font("Arial",14,FontStyle.Bold);
      SolidBrush bb=new SolidBrush(nyc);
      StringFormat df=new StringFormat();
     }

//for animation

     void draw(object ob,EventArgs a)
     {
     l.Location=new Point(x,y);
      --y;
      if(y==-100)y=230;
        }
    }

    public static void Main()
    {
    Application.Run(new shesharp());
厖?

厖?








  

Remarks: OS: Win2000 and 98 with CLR and JAVA

This application is dedicated to SUN and MS.  

Mail me:

mallm_uma@rediffmail.com

mahe_proj@rediffmail.com



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.