程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 從C#裡調用java程序

從C#裡調用java程序

編輯:關於C語言
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.DarkOra
nge,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..\[email protected]\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,ny
c,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());
    }
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved