欢迎光临
我们一直在努力

Calling Java program from C#-.NET教程,C#语言

建站超值云服务器,限时71元/月

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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » Calling Java program from C#-.NET教程,C#语言
分享到: 更多 (0)